Index: data/files/in7.txt =================================================================== --- data/files/in7.txt (revision 0) +++ data/files/in7.txt (revision 0) @@ -0,0 +1,3 @@ +35 40 +48 32 +100100 40 Index: ql/src/java/org/apache/hadoop/hive/ql/plan/PlanUtils.java =================================================================== --- ql/src/java/org/apache/hadoop/hive/ql/plan/PlanUtils.java (revision 1151047) +++ ql/src/java/org/apache/hadoop/hive/ql/plan/PlanUtils.java (working copy) @@ -209,8 +209,10 @@ public static TableDesc getDefaultQueryOutputTableDesc(String cols, String colTypes, String fileFormat) { - return getTableDesc(LazySimpleSerDe.class, "" + Utilities.ctrlaCode, cols, colTypes, + TableDesc tblDesc = getTableDesc(LazySimpleSerDe.class, "" + Utilities.ctrlaCode, cols, colTypes, false, false, fileFormat); + tblDesc.getProperties().setProperty(Constants.ESCAPE_CHAR, "\\"); + return tblDesc; } /** Index: ql/src/test/queries/clientpositive/delimiter.q =================================================================== --- ql/src/test/queries/clientpositive/delimiter.q (revision 0) +++ ql/src/test/queries/clientpositive/delimiter.q (revision 0) @@ -0,0 +1,12 @@ +create table impressions (imp string, msg string) +row format delimited +fields terminated by '\t' +lines terminated by '\n' +stored as textfile; +LOAD DATA LOCAL INPATH '../data/files/in7.txt' INTO TABLE impressions; + +select * from impressions; + +select imp,msg from impressions; + +drop table impressions; \ No newline at end of file Index: ql/src/test/results/clientpositive/combine2.q.out =================================================================== --- ql/src/test/results/clientpositive/combine2.q.out (revision 1151047) +++ ql/src/test/results/clientpositive/combine2.q.out (working copy) @@ -128,7 +128,7 @@ PREHOOK: Input: default@combine2@value=val_8 PREHOOK: Input: default@combine2@value=val_9 PREHOOK: Input: default@combine2@value=| -PREHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_18-51-37_725_5254308986550821577/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_01-14-22_741_2285484594643850014/-mr-10000 POSTHOOK: query: select key, value from combine2 where value is not null order by key POSTHOOK: type: QUERY POSTHOOK: Input: default@combine2@value=2010-04-21 09%3A45%3A00 @@ -139,7 +139,7 @@ POSTHOOK: Input: default@combine2@value=val_8 POSTHOOK: Input: default@combine2@value=val_9 POSTHOOK: Input: default@combine2@value=| -POSTHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_18-51-37_725_5254308986550821577/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_01-14-22_741_2285484594643850014/-mr-10000 POSTHOOK: Lineage: combine2 PARTITION(value=2010-04-21 09:45:00).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: combine2 PARTITION(value=val_0).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: combine2 PARTITION(value=val_2).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -204,16 +204,16 @@ type: bigint Needs Tagging: false Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=2010-04-21 09%3A45%3A00 [combine2] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=val_0 [combine2] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=val_2 [combine2] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=val_4 [combine2] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=val_5 [combine2] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=val_8 [combine2] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=val_9 [combine2] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=| [combine2] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=2010-04-21 09%3A45%3A00 [combine2] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=val_0 [combine2] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=val_2 [combine2] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=val_4 [combine2] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=val_5 [combine2] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=val_8 [combine2] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=val_9 [combine2] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=| [combine2] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=2010-04-21 09%3A45%3A00 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=2010-04-21 09%3A45%3A00 Partition base file name: value=2010-04-21 09%3A45%3A00 input format: org.apache.hadoop.mapred.TextInputFormat @@ -226,7 +226,7 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=2010-04-21 09%3A45%3A00 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=2010-04-21 09%3A45%3A00 name default.combine2 numFiles 1 numPartitions 8 @@ -237,7 +237,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 3 - transient_lastDdlTime 1306979496 + transient_lastDdlTime 1311927262 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -248,7 +248,7 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2 name default.combine2 numFiles 8 numPartitions 8 @@ -259,11 +259,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1306979497 + transient_lastDdlTime 1311927262 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.combine2 name: default.combine2 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=val_0 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=val_0 Partition base file name: value=val_0 input format: org.apache.hadoop.mapred.TextInputFormat @@ -276,7 +276,7 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=val_0 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=val_0 name default.combine2 numFiles 1 numPartitions 8 @@ -287,7 +287,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 6 - transient_lastDdlTime 1306979496 + transient_lastDdlTime 1311927262 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -298,7 +298,7 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2 name default.combine2 numFiles 8 numPartitions 8 @@ -309,11 +309,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1306979497 + transient_lastDdlTime 1311927262 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.combine2 name: default.combine2 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=val_2 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=val_2 Partition base file name: value=val_2 input format: org.apache.hadoop.mapred.TextInputFormat @@ -326,7 +326,7 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=val_2 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=val_2 name default.combine2 numFiles 1 numPartitions 8 @@ -337,7 +337,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 2 - transient_lastDdlTime 1306979497 + transient_lastDdlTime 1311927262 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -348,7 +348,7 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2 name default.combine2 numFiles 8 numPartitions 8 @@ -359,11 +359,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1306979497 + transient_lastDdlTime 1311927262 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.combine2 name: default.combine2 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=val_4 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=val_4 Partition base file name: value=val_4 input format: org.apache.hadoop.mapred.TextInputFormat @@ -376,7 +376,7 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=val_4 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=val_4 name default.combine2 numFiles 1 numPartitions 8 @@ -387,7 +387,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 2 - transient_lastDdlTime 1306979497 + transient_lastDdlTime 1311927262 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -398,7 +398,7 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2 name default.combine2 numFiles 8 numPartitions 8 @@ -409,11 +409,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1306979497 + transient_lastDdlTime 1311927262 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.combine2 name: default.combine2 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=val_5 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=val_5 Partition base file name: value=val_5 input format: org.apache.hadoop.mapred.TextInputFormat @@ -426,7 +426,7 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=val_5 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=val_5 name default.combine2 numFiles 1 numPartitions 8 @@ -437,7 +437,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 6 - transient_lastDdlTime 1306979497 + transient_lastDdlTime 1311927262 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -448,7 +448,7 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2 name default.combine2 numFiles 8 numPartitions 8 @@ -459,11 +459,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1306979497 + transient_lastDdlTime 1311927262 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.combine2 name: default.combine2 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=val_8 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=val_8 Partition base file name: value=val_8 input format: org.apache.hadoop.mapred.TextInputFormat @@ -476,7 +476,7 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=val_8 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=val_8 name default.combine2 numFiles 1 numPartitions 8 @@ -487,7 +487,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 2 - transient_lastDdlTime 1306979497 + transient_lastDdlTime 1311927262 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -498,7 +498,7 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2 name default.combine2 numFiles 8 numPartitions 8 @@ -509,11 +509,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1306979497 + transient_lastDdlTime 1311927262 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.combine2 name: default.combine2 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=val_9 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=val_9 Partition base file name: value=val_9 input format: org.apache.hadoop.mapred.TextInputFormat @@ -526,7 +526,7 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=val_9 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=val_9 name default.combine2 numFiles 1 numPartitions 8 @@ -537,7 +537,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 2 - transient_lastDdlTime 1306979497 + transient_lastDdlTime 1311927262 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -548,7 +548,7 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2 name default.combine2 numFiles 8 numPartitions 8 @@ -559,11 +559,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1306979497 + transient_lastDdlTime 1311927262 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.combine2 name: default.combine2 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=| + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=| Partition base file name: value=| input format: org.apache.hadoop.mapred.TextInputFormat @@ -576,7 +576,7 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2/value=| + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2/value=| name default.combine2 numFiles 1 numPartitions 8 @@ -587,7 +587,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 3 - transient_lastDdlTime 1306979496 + transient_lastDdlTime 1311927262 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -598,7 +598,7 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/combine2 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/combine2 name default.combine2 numFiles 8 numPartitions 8 @@ -609,7 +609,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1306979497 + transient_lastDdlTime 1311927262 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.combine2 name: default.combine2 @@ -628,15 +628,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/tomasz/hive_2011-06-01_18-51-41_419_8501262958534635510/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_01-14-25_785_3311326813954316235/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/tomasz/hive_2011-06-01_18-51-41_419_8501262958534635510/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_01-14-25_785_3311326813954316235/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0 columns.types bigint + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -657,7 +658,7 @@ PREHOOK: Input: default@combine2@value=val_8 PREHOOK: Input: default@combine2@value=val_9 PREHOOK: Input: default@combine2@value=| -PREHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_18-51-41_554_2942361479619017336/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_01-14-25_892_527486031009601879/-mr-10000 POSTHOOK: query: select count(1) from combine2 where value is not null POSTHOOK: type: QUERY POSTHOOK: Input: default@combine2@value=2010-04-21 09%3A45%3A00 @@ -668,7 +669,7 @@ POSTHOOK: Input: default@combine2@value=val_8 POSTHOOK: Input: default@combine2@value=val_9 POSTHOOK: Input: default@combine2@value=| -POSTHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_18-51-41_554_2942361479619017336/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_01-14-25_892_527486031009601879/-mr-10000 POSTHOOK: Lineage: combine2 PARTITION(value=2010-04-21 09:45:00).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: combine2 PARTITION(value=val_0).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: combine2 PARTITION(value=val_2).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -767,14 +768,14 @@ PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 PREHOOK: Input: default@srcpart@ds=2008-04-09/hr=11 PREHOOK: Input: default@srcpart@ds=2008-04-09/hr=12 -PREHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_18-51-45_373_517425372919749437/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_01-14-29_008_4318866609287968840/-mr-10000 POSTHOOK: query: select ds, count(1) from srcpart where ds is not null group by ds POSTHOOK: type: QUERY POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 POSTHOOK: Input: default@srcpart@ds=2008-04-09/hr=11 POSTHOOK: Input: default@srcpart@ds=2008-04-09/hr=12 -POSTHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_18-51-45_373_517425372919749437/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_01-14-29_008_4318866609287968840/-mr-10000 POSTHOOK: Lineage: combine2 PARTITION(value=2010-04-21 09:45:00).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: combine2 PARTITION(value=val_0).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: combine2 PARTITION(value=val_2).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/delimiter.q.out =================================================================== --- ql/src/test/results/clientpositive/delimiter.q.out (revision 0) +++ ql/src/test/results/clientpositive/delimiter.q.out (revision 0) @@ -0,0 +1,49 @@ +PREHOOK: query: create table impressions (imp string, msg string) +row format delimited +fields terminated by '\t' +lines terminated by '\n' +stored as textfile +PREHOOK: type: CREATETABLE +POSTHOOK: query: create table impressions (imp string, msg string) +row format delimited +fields terminated by '\t' +lines terminated by '\n' +stored as textfile +POSTHOOK: type: CREATETABLE +POSTHOOK: Output: default@impressions +PREHOOK: query: LOAD DATA LOCAL INPATH '../data/files/in7.txt' INTO TABLE impressions +PREHOOK: type: LOAD +PREHOOK: Output: default@impressions +POSTHOOK: query: LOAD DATA LOCAL INPATH '../data/files/in7.txt' INTO TABLE impressions +POSTHOOK: type: LOAD +POSTHOOK: Output: default@impressions +PREHOOK: query: select * from impressions +PREHOOK: type: QUERY +PREHOOK: Input: default@impressions +PREHOOK: Output: file:/var/folders/uc/ucuNeMAVGQGzy3459D8z2+++Z0Q/-Tmp-/amarsri/hive_2011-07-28_22-22-05_087_4079188620089903829/-mr-10000 +POSTHOOK: query: select * from impressions +POSTHOOK: type: QUERY +POSTHOOK: Input: default@impressions +POSTHOOK: Output: file:/var/folders/uc/ucuNeMAVGQGzy3459D8z2+++Z0Q/-Tmp-/amarsri/hive_2011-07-28_22-22-05_087_4079188620089903829/-mr-10000 +35 40 +48 32 +100100 40 +PREHOOK: query: select imp,msg from impressions +PREHOOK: type: QUERY +PREHOOK: Input: default@impressions +PREHOOK: Output: file:/var/folders/uc/ucuNeMAVGQGzy3459D8z2+++Z0Q/-Tmp-/amarsri/hive_2011-07-28_22-22-05_611_3078194510979662520/-mr-10000 +POSTHOOK: query: select imp,msg from impressions +POSTHOOK: type: QUERY +POSTHOOK: Input: default@impressions +POSTHOOK: Output: file:/var/folders/uc/ucuNeMAVGQGzy3459D8z2+++Z0Q/-Tmp-/amarsri/hive_2011-07-28_22-22-05_611_3078194510979662520/-mr-10000 +35 40 +48 32 +100100 40 +PREHOOK: query: drop table impressions +PREHOOK: type: DROPTABLE +PREHOOK: Input: default@impressions +PREHOOK: Output: default@impressions +POSTHOOK: query: drop table impressions +POSTHOOK: type: DROPTABLE +POSTHOOK: Input: default@impressions +POSTHOOK: Output: default@impressions Index: ql/src/test/results/clientpositive/filter_join_breaktask.q.out =================================================================== --- ql/src/test/results/clientpositive/filter_join_breaktask.q.out (revision 1151047) +++ ql/src/test/results/clientpositive/filter_join_breaktask.q.out (working copy) @@ -85,9 +85,9 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/filter_join_breaktask/ds=2008-04-08 [f, m] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/filter_join_breaktask/ds=2008-04-08 [f, m] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/filter_join_breaktask/ds=2008-04-08 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/filter_join_breaktask/ds=2008-04-08 Partition base file name: ds=2008-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -100,7 +100,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/filter_join_breaktask/ds=2008-04-08 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/filter_join_breaktask/ds=2008-04-08 name default.filter_join_breaktask numFiles 1 numPartitions 1 @@ -111,7 +111,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 236 - transient_lastDdlTime 1306980051 + transient_lastDdlTime 1311927721 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -122,7 +122,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/filter_join_breaktask + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/filter_join_breaktask name default.filter_join_breaktask numFiles 1 numPartitions 1 @@ -133,7 +133,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 236 - transient_lastDdlTime 1306980051 + transient_lastDdlTime 1311927721 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.filter_join_breaktask name: default.filter_join_breaktask @@ -149,7 +149,7 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/amarsri/hive_2011-07-11_01-46-22_446_957936931018191228/-mr-10002 + directory: file:/tmp/amarsri/hive_2011-07-29_01-22-01_246_748904726780254946/-mr-10002 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -196,10 +196,10 @@ type: string Needs Tagging: true Path -> Alias: - file:/tmp/tomasz/hive_2011-06-01_19-00-51_695_3409169030364207424/-mr-10002 [$INTNAME] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/filter_join_breaktask/ds=2008-04-08 [g] + file:/tmp/amarsri/hive_2011-07-29_01-22-01_246_748904726780254946/-mr-10002 [$INTNAME] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/filter_join_breaktask/ds=2008-04-08 [g] Path -> Partition: - file:/tmp/tomasz/hive_2011-06-01_19-00-51_695_3409169030364207424/-mr-10002 + file:/tmp/amarsri/hive_2011-07-29_01-22-01_246_748904726780254946/-mr-10002 Partition base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -215,7 +215,7 @@ columns _col0,_col6,_col7 columns.types int,string,string escape.delim \ - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/filter_join_breaktask/ds=2008-04-08 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/filter_join_breaktask/ds=2008-04-08 Partition base file name: ds=2008-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -228,7 +228,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/filter_join_breaktask/ds=2008-04-08 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/filter_join_breaktask/ds=2008-04-08 name default.filter_join_breaktask numFiles 1 numPartitions 1 @@ -239,7 +239,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 236 - transient_lastDdlTime 1306980051 + transient_lastDdlTime 1311927721 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -250,7 +250,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/filter_join_breaktask + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/filter_join_breaktask name default.filter_join_breaktask numFiles 1 numPartitions 1 @@ -261,7 +261,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 236 - transient_lastDdlTime 1306980051 + transient_lastDdlTime 1311927721 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.filter_join_breaktask name: default.filter_join_breaktask @@ -284,15 +284,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/tomasz/hive_2011-06-01_19-00-51_695_3409169030364207424/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_01-22-01_246_748904726780254946/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/tomasz/hive_2011-06-01_19-00-51_695_3409169030364207424/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_01-22-01_246_748904726780254946/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1 columns.types int:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -308,13 +309,13 @@ JOIN filter_join_breaktask g ON(g.value = m.value AND g.ds='2008-04-08' AND m.ds='2008-04-08' AND m.value is not null AND m.value !='') PREHOOK: type: QUERY PREHOOK: Input: default@filter_join_breaktask@ds=2008-04-08 -PREHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_19-00-51_894_7598558703345729633/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_01-22-01_372_3915857844458948119/-mr-10000 POSTHOOK: query: SELECT f.key, g.value FROM filter_join_breaktask f JOIN filter_join_breaktask m ON( f.key = m.key AND f.ds='2008-04-08' AND m.ds='2008-04-08' AND f.key is not null) JOIN filter_join_breaktask g ON(g.value = m.value AND g.ds='2008-04-08' AND m.ds='2008-04-08' AND m.value is not null AND m.value !='') POSTHOOK: type: QUERY POSTHOOK: Input: default@filter_join_breaktask@ds=2008-04-08 -POSTHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_19-00-51_894_7598558703345729633/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_01-22-01_372_3915857844458948119/-mr-10000 POSTHOOK: Lineage: filter_join_breaktask PARTITION(ds=2008-04-08).key EXPRESSION [(src1)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: filter_join_breaktask PARTITION(ds=2008-04-08).value SIMPLE [(src1)src1.FieldSchema(name:value, type:string, comment:default), ] 146 val_146 Index: ql/src/test/results/clientpositive/input23.q.out =================================================================== --- ql/src/test/results/clientpositive/input23.q.out (revision 1151047) +++ ql/src/test/results/clientpositive/input23.q.out (working copy) @@ -54,9 +54,9 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -70,13 +70,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -87,13 +87,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -129,15 +129,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/var/folders/uc/ucuNeMAVGQGzy3459D8z2+++Z0Q/-Tmp-/amarsri/hive_2011-03-17_09-04-29_865_6849719999466698028/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_01-40-44_842_8292826286568721646/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/var/folders/uc/ucuNeMAVGQGzy3459D8z2+++Z0Q/-Tmp-/amarsri/hive_2011-03-17_09-04-29_865_6849719999466698028/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_01-40-44_842_8292826286568721646/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3,_col4,_col5,_col6,_col7 columns.types string:string:string:string:string:string:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -151,8 +152,8 @@ PREHOOK: query: select * from srcpart a join srcpart b where a.ds = '2008-04-08' and a.hr = '11' and b.ds = '2008-04-08' and b.hr = '14' limit 5 PREHOOK: type: QUERY PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_15-54-28_401_3522044426043645674/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_01-40-44_922_7457740430101750979/-mr-10000 POSTHOOK: query: select * from srcpart a join srcpart b where a.ds = '2008-04-08' and a.hr = '11' and b.ds = '2008-04-08' and b.hr = '14' limit 5 POSTHOOK: type: QUERY POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_15-54-28_401_3522044426043645674/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_01-40-44_922_7457740430101750979/-mr-10000 Index: ql/src/test/results/clientpositive/input42.q.out =================================================================== --- ql/src/test/results/clientpositive/input42.q.out (revision 1151047) +++ ql/src/test/results/clientpositive/input42.q.out (working copy) @@ -49,10 +49,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [a] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -66,13 +66,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -83,17 +83,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -107,13 +107,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -124,13 +124,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -139,15 +139,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_15-57-07_635_1521570938566507437/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_01-42-41_270_4261154033200724464/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-10_15-57-07_635_1521570938566507437/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_01-42-41_270_4261154033200724464/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3 columns.types string:string:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -162,12 +163,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_15-57-07_771_8008897996969692319/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_01-42-41_332_9190712678024537343/-mr-10000 POSTHOOK: query: select * from srcpart a where a.ds='2008-04-08' order by a.key, a.hr POSTHOOK: type: QUERY POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_15-57-07_771_8008897996969692319/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_01-42-41_332_9190712678024537343/-mr-10000 0 val_0 2008-04-08 11 0 val_0 2008-04-08 11 0 val_0 2008-04-08 11 @@ -1224,10 +1225,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [a] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1241,13 +1242,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1258,17 +1259,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1282,13 +1283,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1299,13 +1300,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -1314,15 +1315,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_15-57-11_395_7120694435411643442/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_01-42-44_028_7659839805392216215/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-10_15-57-11_395_7120694435411643442/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_01-42-44_028_7659839805392216215/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3 columns.types string:string:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -1337,12 +1339,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_15-57-11_528_2337093511070491628/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_01-42-44_086_7013432585177983169/-mr-10000 POSTHOOK: query: select * from srcpart a where a.ds='2008-04-08' and key < 200 order by a.key, a.hr POSTHOOK: type: QUERY POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_15-57-11_528_2337093511070491628/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_01-42-44_086_7013432585177983169/-mr-10000 0 val_0 2008-04-08 11 0 val_0 2008-04-08 11 0 val_0 2008-04-08 11 @@ -1777,10 +1779,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [a] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1794,13 +1796,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1811,17 +1813,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1835,13 +1837,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1852,13 +1854,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -1867,15 +1869,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_15-57-16_627_3731606838809054192/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_01-42-46_792_1531603330643616455/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-10_15-57-16_627_3731606838809054192/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_01-42-46_792_1531603330643616455/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3 columns.types string:string:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -1890,12 +1893,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_15-57-16_775_373089209553050307/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_01-42-46_851_4742753378737114592/-mr-10000 POSTHOOK: query: select * from srcpart a where a.ds='2008-04-08' and rand(100) < 0.1 order by a.key, a.hr POSTHOOK: type: QUERY POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_15-57-16_775_373089209553050307/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_01-42-46_851_4742753378737114592/-mr-10000 113 val_113 2008-04-08 11 118 val_118 2008-04-08 11 12 val_12 2008-04-08 12 Index: ql/src/test/results/clientpositive/input_part7.q.out =================================================================== --- ql/src/test/results/clientpositive/input_part7.q.out (revision 1151047) +++ ql/src/test/results/clientpositive/input_part7.q.out (working copy) @@ -133,10 +133,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [null-subquery1:a-subquery1:x, null-subquery2:a-subquery2:y] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [null-subquery1:a-subquery1:x, null-subquery2:a-subquery2:y] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [null-subquery1:a-subquery1:x, null-subquery2:a-subquery2:y] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [null-subquery1:a-subquery1:x, null-subquery2:a-subquery2:y] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -150,13 +150,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -167,17 +167,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -191,13 +191,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -208,13 +208,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -223,15 +223,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_16-00-32_374_3794920009693271746/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_01-44-25_271_2784975647188750974/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-10_16-00-32_374_3794920009693271746/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_01-44-25_271_2784975647188750974/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3 columns.types string:string:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -251,7 +252,7 @@ PREHOOK: type: QUERY PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_16-00-32_521_3587854096568220275/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_01-44-25_355_7230411336825408646/-mr-10000 POSTHOOK: query: SELECT * FROM ( SELECT X.* FROM SRCPART X WHERE X.ds = '2008-04-08' and X.key < 100 UNION ALL @@ -261,7 +262,7 @@ POSTHOOK: type: QUERY POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_16-00-32_521_3587854096568220275/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_01-44-25_355_7230411336825408646/-mr-10000 0 val_0 2008-04-08 11 0 val_0 2008-04-08 11 0 val_0 2008-04-08 11 Index: ql/src/test/results/clientpositive/input_part9.q.out =================================================================== --- ql/src/test/results/clientpositive/input_part9.q.out (revision 1151047) +++ ql/src/test/results/clientpositive/input_part9.q.out (working copy) @@ -54,10 +54,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [x] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [x] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [x] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [x] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -71,13 +71,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -88,17 +88,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -112,13 +112,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -129,13 +129,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -144,15 +144,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_16-00-37_414_3110997122037603470/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_01-44-28_799_1622419837310111927/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-10_16-00-37_414_3110997122037603470/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_01-44-28_799_1622419837310111927/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3 columns.types string:string:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -167,12 +168,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_16-00-37_541_281073495943344664/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_01-44-28_863_3809932140328249306/-mr-10000 POSTHOOK: query: SELECT x.* FROM SRCPART x WHERE key IS NOT NULL AND ds = '2008-04-08' order by x.key, x.hr POSTHOOK: type: QUERY POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_16-00-37_541_281073495943344664/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_01-44-28_863_3809932140328249306/-mr-10000 0 val_0 2008-04-08 11 0 val_0 2008-04-08 11 0 val_0 2008-04-08 11 Index: ql/src/test/results/clientpositive/louter_join_ppr.q.out =================================================================== --- ql/src/test/results/clientpositive/louter_join_ppr.q.out (revision 1151047) +++ ql/src/test/results/clientpositive/louter_join_ppr.q.out (working copy) @@ -70,11 +70,11 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [a] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [b] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [b] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -85,12 +85,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -101,16 +101,16 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.src name: default.src - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -124,13 +124,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -141,17 +141,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -165,13 +165,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -182,13 +182,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -220,15 +220,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_16-37-11_623_3702980397436579388/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-12-04_461_670752521732963169/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-10_16-37-11_623_3702980397436579388/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-12-04_461_670752521732963169/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3 columns.types string:string:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -250,7 +251,7 @@ PREHOOK: Input: default@src PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_16-37-11_769_4736674847744577829/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-12-04_549_2442272252583147920/-mr-10000 POSTHOOK: query: FROM src a LEFT OUTER JOIN @@ -262,7 +263,7 @@ POSTHOOK: Input: default@src POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_16-37-11_769_4736674847744577829/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-12-04_549_2442272252583147920/-mr-10000 17 val_17 17 val_17 17 val_17 17 val_17 18 val_18 18 val_18 @@ -349,13 +350,13 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [b] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [a] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [a] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [a] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -366,12 +367,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -382,16 +383,16 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.src name: default.src - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -405,13 +406,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -422,17 +423,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -446,13 +447,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -463,17 +464,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -487,13 +488,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -504,17 +505,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -528,13 +529,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -545,13 +546,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -586,15 +587,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_16-37-15_926_891674243391284398/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-12-07_473_4834062336456413628/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-10_16-37-15_926_891674243391284398/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-12-07_473_4834062336456413628/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3 columns.types string:string:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -618,7 +620,7 @@ PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 PREHOOK: Input: default@srcpart@ds=2008-04-09/hr=11 PREHOOK: Input: default@srcpart@ds=2008-04-09/hr=12 -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_16-37-16_088_6735389241100001878/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-12-07_558_3202512199478590298/-mr-10000 POSTHOOK: query: FROM srcpart a LEFT OUTER JOIN @@ -632,7 +634,7 @@ POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 POSTHOOK: Input: default@srcpart@ds=2008-04-09/hr=11 POSTHOOK: Input: default@srcpart@ds=2008-04-09/hr=12 -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_16-37-16_088_6735389241100001878/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-12-07_558_3202512199478590298/-mr-10000 17 val_17 17 val_17 17 val_17 17 val_17 18 val_18 18 val_18 @@ -719,13 +721,13 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [a] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [b] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [b] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [b] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [b] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -736,12 +738,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -752,16 +754,16 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.src name: default.src - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -775,13 +777,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -792,17 +794,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -816,13 +818,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -833,17 +835,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -857,13 +859,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -874,17 +876,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -898,13 +900,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -915,13 +917,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -953,15 +955,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_16-37-20_683_2855828289939844521/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-12-10_581_250625319537063103/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-10_16-37-20_683_2855828289939844521/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-12-10_581_250625319537063103/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3 columns.types string:string:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -985,7 +988,7 @@ PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 PREHOOK: Input: default@srcpart@ds=2008-04-09/hr=11 PREHOOK: Input: default@srcpart@ds=2008-04-09/hr=12 -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_16-37-20_843_3945565438922606221/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-12-10_665_2583965186281616801/-mr-10000 POSTHOOK: query: FROM src a LEFT OUTER JOIN @@ -999,7 +1002,7 @@ POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 POSTHOOK: Input: default@srcpart@ds=2008-04-09/hr=11 POSTHOOK: Input: default@srcpart@ds=2008-04-09/hr=12 -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_16-37-20_843_3945565438922606221/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-12-10_665_2583965186281616801/-mr-10000 17 val_17 17 val_17 17 val_17 17 val_17 18 val_18 18 val_18 @@ -1086,11 +1089,11 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [b] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [a] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -1101,12 +1104,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1117,16 +1120,16 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.src name: default.src - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1140,13 +1143,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1157,17 +1160,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1181,13 +1184,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1198,13 +1201,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -1236,15 +1239,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_16-37-27_062_688763315397090305/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-12-13_682_7863972058206995285/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-10_16-37-27_062_688763315397090305/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-12-13_682_7863972058206995285/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3 columns.types string:string:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -1266,7 +1270,7 @@ PREHOOK: Input: default@src PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_16-37-27_212_5521214912289806758/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-12-13_763_3844337752390338910/-mr-10000 POSTHOOK: query: FROM srcpart a LEFT OUTER JOIN @@ -1278,7 +1282,7 @@ POSTHOOK: Input: default@src POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_16-37-27_212_5521214912289806758/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-12-13_763_3844337752390338910/-mr-10000 17 val_17 17 val_17 17 val_17 17 val_17 18 val_18 18 val_18 Index: ql/src/test/results/clientpositive/outer_join_ppr.q.out =================================================================== --- ql/src/test/results/clientpositive/outer_join_ppr.q.out (revision 1151047) +++ ql/src/test/results/clientpositive/outer_join_ppr.q.out (working copy) @@ -67,13 +67,13 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [a] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [b] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [b] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [b] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [b] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -84,12 +84,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -100,16 +100,16 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.src name: default.src - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -123,13 +123,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -140,17 +140,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -164,13 +164,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -181,17 +181,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -205,13 +205,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -222,17 +222,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -246,13 +246,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -263,13 +263,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -304,15 +304,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_16-50-09_154_3914924465644446573/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-21-54_144_3773410110729854056/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-10_16-50-09_154_3914924465644446573/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-21-54_144_3773410110729854056/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3 columns.types string:string:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -336,7 +337,7 @@ PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 PREHOOK: Input: default@srcpart@ds=2008-04-09/hr=11 PREHOOK: Input: default@srcpart@ds=2008-04-09/hr=12 -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_16-50-09_320_4982626115542069761/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-21-54_228_7354772684137064743/-mr-10000 POSTHOOK: query: FROM src a FULL OUTER JOIN @@ -350,7 +351,7 @@ POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 POSTHOOK: Input: default@srcpart@ds=2008-04-09/hr=11 POSTHOOK: Input: default@srcpart@ds=2008-04-09/hr=12 -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_16-50-09_320_4982626115542069761/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-21-54_228_7354772684137064743/-mr-10000 17 val_17 17 val_17 17 val_17 17 val_17 18 val_18 18 val_18 @@ -432,13 +433,13 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [a] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [b] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [b] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [b] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [b] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -449,12 +450,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -465,16 +466,16 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.src name: default.src - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -488,13 +489,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -505,17 +506,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -529,13 +530,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -546,17 +547,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -570,13 +571,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -587,17 +588,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -611,13 +612,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -628,13 +629,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -666,15 +667,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_16-50-14_899_1868043025606732938/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-21-58_332_1661361999774802105/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-10_16-50-14_899_1868043025606732938/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-21-58_332_1661361999774802105/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3 columns.types string:string:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -698,7 +700,7 @@ PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 PREHOOK: Input: default@srcpart@ds=2008-04-09/hr=11 PREHOOK: Input: default@srcpart@ds=2008-04-09/hr=12 -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_16-50-15_056_157768930959639632/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-21-58_411_7568840929518995716/-mr-10000 POSTHOOK: query: FROM src a FULL OUTER JOIN @@ -712,7 +714,7 @@ POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 POSTHOOK: Input: default@srcpart@ds=2008-04-09/hr=11 POSTHOOK: Input: default@srcpart@ds=2008-04-09/hr=12 -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_16-50-15_056_157768930959639632/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-21-58_411_7568840929518995716/-mr-10000 17 val_17 17 val_17 17 val_17 17 val_17 18 val_18 18 val_18 Index: ql/src/test/results/clientpositive/pcr.q.out =================================================================== --- ql/src/test/results/clientpositive/pcr.q.out (revision 1151047) +++ ql/src/test/results/clientpositive/pcr.q.out (working copy) @@ -107,10 +107,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 Partition base file name: ds=2000-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -123,7 +123,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -134,7 +134,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984455 + transient_lastDdlTime 1311931513 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -145,7 +145,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -156,11 +156,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 Partition base file name: ds=2000-04-09 input format: org.apache.hadoop.mapred.TextInputFormat @@ -173,7 +173,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -184,7 +184,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984459 + transient_lastDdlTime 1311931517 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -195,7 +195,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -206,7 +206,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 @@ -215,15 +215,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/tomasz/hive_2011-06-01_20-14-23_794_45487565656477583/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-25-21_129_4065046827555412953/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/tomasz/hive_2011-06-01_20-14-23_794_45487565656477583/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-25-21_129_4065046827555412953/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2 columns.types int:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -238,12 +239,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@pcr_t1@ds=2000-04-08 PREHOOK: Input: default@pcr_t1@ds=2000-04-09 -PREHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-14-23_901_543871112868419867/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-21_189_928400507516888386/-mr-10000 POSTHOOK: query: select key, value, ds from pcr_t1 where ds<='2000-04-09' and key<5 order by key, ds POSTHOOK: type: QUERY POSTHOOK: Input: default@pcr_t1@ds=2000-04-08 POSTHOOK: Input: default@pcr_t1@ds=2000-04-09 -POSTHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-14-23_901_543871112868419867/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-21_189_928400507516888386/-mr-10000 POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-09).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -310,11 +311,11 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 Partition base file name: ds=2000-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -327,7 +328,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -338,7 +339,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984455 + transient_lastDdlTime 1311931513 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -349,7 +350,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -360,11 +361,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 Partition base file name: ds=2000-04-09 input format: org.apache.hadoop.mapred.TextInputFormat @@ -377,7 +378,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -388,7 +389,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984459 + transient_lastDdlTime 1311931517 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -399,7 +400,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -410,11 +411,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 Partition base file name: ds=2000-04-10 input format: org.apache.hadoop.mapred.TextInputFormat @@ -427,7 +428,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -438,7 +439,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -449,7 +450,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -460,7 +461,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 @@ -469,15 +470,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/tomasz/hive_2011-06-01_20-14-26_949_686771378189251939/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-25-23_865_6506623963862014221/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/tomasz/hive_2011-06-01_20-14-26_949_686771378189251939/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-25-23_865_6506623963862014221/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1 columns.types int:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -493,13 +495,13 @@ PREHOOK: Input: default@pcr_t1@ds=2000-04-08 PREHOOK: Input: default@pcr_t1@ds=2000-04-09 PREHOOK: Input: default@pcr_t1@ds=2000-04-10 -PREHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-14-27_063_5837880324861709071/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-23_926_1611813292250503932/-mr-10000 POSTHOOK: query: select key, value from pcr_t1 where ds<='2000-04-09' or key<5 order by key POSTHOOK: type: QUERY POSTHOOK: Input: default@pcr_t1@ds=2000-04-08 POSTHOOK: Input: default@pcr_t1@ds=2000-04-09 POSTHOOK: Input: default@pcr_t1@ds=2000-04-10 -POSTHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-14-27_063_5837880324861709071/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-23_926_1611813292250503932/-mr-10000 POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-09).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -607,10 +609,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 Partition base file name: ds=2000-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -623,7 +625,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -634,7 +636,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984455 + transient_lastDdlTime 1311931513 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -645,7 +647,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -656,11 +658,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 Partition base file name: ds=2000-04-09 input format: org.apache.hadoop.mapred.TextInputFormat @@ -673,7 +675,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -684,7 +686,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984459 + transient_lastDdlTime 1311931517 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -695,7 +697,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -706,7 +708,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 @@ -715,15 +717,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/tomasz/hive_2011-06-01_20-14-30_270_8932721888182592546/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-25-26_679_5171780899276979732/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/tomasz/hive_2011-06-01_20-14-30_270_8932721888182592546/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-25-26_679_5171780899276979732/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2 columns.types int:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -738,12 +741,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@pcr_t1@ds=2000-04-08 PREHOOK: Input: default@pcr_t1@ds=2000-04-09 -PREHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-14-30_378_3001871383983881471/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-26_734_1964916511399680084/-mr-10000 POSTHOOK: query: select key, value, ds from pcr_t1 where ds<='2000-04-09' and key<5 and value != 'val_2' order by key, ds POSTHOOK: type: QUERY POSTHOOK: Input: default@pcr_t1@ds=2000-04-08 POSTHOOK: Input: default@pcr_t1@ds=2000-04-09 -POSTHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-14-30_378_3001871383983881471/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-26_734_1964916511399680084/-mr-10000 POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-09).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -818,10 +821,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 Partition base file name: ds=2000-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -834,7 +837,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -845,7 +848,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984455 + transient_lastDdlTime 1311931513 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -856,7 +859,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -867,11 +870,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 Partition base file name: ds=2000-04-10 input format: org.apache.hadoop.mapred.TextInputFormat @@ -884,7 +887,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -895,7 +898,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -906,7 +909,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -917,7 +920,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 @@ -926,15 +929,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/tomasz/hive_2011-06-01_20-14-33_477_4843342398582016187/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-25-29_372_2124753264258245021/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/tomasz/hive_2011-06-01_20-14-33_477_4843342398582016187/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-25-29_372_2124753264258245021/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2 columns.types int:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -950,13 +954,13 @@ PREHOOK: type: QUERY PREHOOK: Input: default@pcr_t1@ds=2000-04-08 PREHOOK: Input: default@pcr_t1@ds=2000-04-10 -PREHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-14-33_595_7059370303120446928/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-29_446_9139902346775639073/-mr-10000 POSTHOOK: query: select key, value, ds from pcr_t1 where (ds < '2000-04-09' and key < 5) or (ds > '2000-04-09' and value == 'val_5') order by key, ds POSTHOOK: type: QUERY POSTHOOK: Input: default@pcr_t1@ds=2000-04-08 POSTHOOK: Input: default@pcr_t1@ds=2000-04-10 -POSTHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-14-33_595_7059370303120446928/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-29_446_9139902346775639073/-mr-10000 POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-09).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -1031,11 +1035,11 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 Partition base file name: ds=2000-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1048,7 +1052,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -1059,7 +1063,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984455 + transient_lastDdlTime 1311931513 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1070,7 +1074,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -1081,11 +1085,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 Partition base file name: ds=2000-04-09 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1098,7 +1102,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -1109,7 +1113,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984459 + transient_lastDdlTime 1311931517 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1120,7 +1124,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -1131,11 +1135,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 Partition base file name: ds=2000-04-10 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1148,7 +1152,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -1159,7 +1163,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1170,7 +1174,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -1181,7 +1185,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 @@ -1190,15 +1194,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/tomasz/hive_2011-06-01_20-14-36_836_3051586657356094147/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-25-32_131_4848675280784439482/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/tomasz/hive_2011-06-01_20-14-36_836_3051586657356094147/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-25-32_131_4848675280784439482/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2 columns.types int:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -1215,14 +1220,14 @@ PREHOOK: Input: default@pcr_t1@ds=2000-04-08 PREHOOK: Input: default@pcr_t1@ds=2000-04-09 PREHOOK: Input: default@pcr_t1@ds=2000-04-10 -PREHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-14-37_078_5128271294396999103/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-32_192_4474962480767634565/-mr-10000 POSTHOOK: query: select key, value, ds from pcr_t1 where (ds < '2000-04-10' and key < 5) or (ds > '2000-04-08' and value == 'val_5') order by key, ds POSTHOOK: type: QUERY POSTHOOK: Input: default@pcr_t1@ds=2000-04-08 POSTHOOK: Input: default@pcr_t1@ds=2000-04-09 POSTHOOK: Input: default@pcr_t1@ds=2000-04-10 -POSTHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-14-37_078_5128271294396999103/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-32_192_4474962480767634565/-mr-10000 POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-09).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -1305,11 +1310,11 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 Partition base file name: ds=2000-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1322,7 +1327,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -1333,7 +1338,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984455 + transient_lastDdlTime 1311931513 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1344,7 +1349,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -1355,11 +1360,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 Partition base file name: ds=2000-04-09 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1372,7 +1377,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -1383,7 +1388,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984459 + transient_lastDdlTime 1311931517 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1394,7 +1399,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -1405,11 +1410,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 Partition base file name: ds=2000-04-10 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1422,7 +1427,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -1433,7 +1438,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1444,7 +1449,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -1455,7 +1460,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 @@ -1464,15 +1469,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/tomasz/hive_2011-06-01_20-14-40_317_3482597828578299090/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-25-34_889_6668013612120955079/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/tomasz/hive_2011-06-01_20-14-40_317_3482597828578299090/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-25-34_889_6668013612120955079/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2 columns.types int:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -1489,14 +1495,14 @@ PREHOOK: Input: default@pcr_t1@ds=2000-04-08 PREHOOK: Input: default@pcr_t1@ds=2000-04-09 PREHOOK: Input: default@pcr_t1@ds=2000-04-10 -PREHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-14-40_434_156015404539012634/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-34_951_6978641764651819716/-mr-10000 POSTHOOK: query: select key, value, ds from pcr_t1 where (ds < '2000-04-10' or key < 5) and (ds > '2000-04-08' or value == 'val_5') order by key, ds POSTHOOK: type: QUERY POSTHOOK: Input: default@pcr_t1@ds=2000-04-08 POSTHOOK: Input: default@pcr_t1@ds=2000-04-09 POSTHOOK: Input: default@pcr_t1@ds=2000-04-10 -POSTHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-14-40_434_156015404539012634/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-34_951_6978641764651819716/-mr-10000 POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-09).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -1583,10 +1589,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 Partition base file name: ds=2000-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1599,7 +1605,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -1610,7 +1616,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984455 + transient_lastDdlTime 1311931513 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1621,7 +1627,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -1632,11 +1638,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 Partition base file name: ds=2000-04-09 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1649,7 +1655,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -1660,7 +1666,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984459 + transient_lastDdlTime 1311931517 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1671,7 +1677,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -1682,7 +1688,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 @@ -1691,15 +1697,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/tomasz/hive_2011-06-01_20-14-43_671_9068406681245435665/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-25-37_712_2575302228085329340/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/tomasz/hive_2011-06-01_20-14-43_671_9068406681245435665/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-25-37_712_2575302228085329340/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1 columns.types int:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -1714,12 +1721,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@pcr_t1@ds=2000-04-08 PREHOOK: Input: default@pcr_t1@ds=2000-04-09 -PREHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-14-43_787_4480677150525031425/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-37_773_2998616591696876714/-mr-10000 POSTHOOK: query: select key, value from pcr_t1 where (ds='2000-04-08' or ds='2000-04-09') and key=14 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@pcr_t1@ds=2000-04-08 POSTHOOK: Input: default@pcr_t1@ds=2000-04-09 -POSTHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-14-43_787_4480677150525031425/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-37_773_2998616591696876714/-mr-10000 POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-09).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -1773,10 +1780,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 Partition base file name: ds=2000-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1789,7 +1796,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -1800,7 +1807,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984455 + transient_lastDdlTime 1311931513 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1811,7 +1818,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -1822,11 +1829,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 Partition base file name: ds=2000-04-09 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1839,7 +1846,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -1850,7 +1857,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984459 + transient_lastDdlTime 1311931517 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1861,7 +1868,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -1872,7 +1879,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 @@ -1881,15 +1888,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/tomasz/hive_2011-06-01_20-14-46_895_6528226210433167390/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-25-40_463_8266098016871150118/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/tomasz/hive_2011-06-01_20-14-46_895_6528226210433167390/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-25-40_463_8266098016871150118/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1 columns.types int:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -1904,12 +1912,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@pcr_t1@ds=2000-04-08 PREHOOK: Input: default@pcr_t1@ds=2000-04-09 -PREHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-14-47_011_5025313460613776496/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-40_524_2597517539449159730/-mr-10000 POSTHOOK: query: select key, value from pcr_t1 where ds='2000-04-08' or ds='2000-04-09' order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@pcr_t1@ds=2000-04-08 POSTHOOK: Input: default@pcr_t1@ds=2000-04-09 -POSTHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-14-47_011_5025313460613776496/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-40_524_2597517539449159730/-mr-10000 POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-09).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -2003,11 +2011,11 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 Partition base file name: ds=2000-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -2020,7 +2028,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -2031,7 +2039,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984455 + transient_lastDdlTime 1311931513 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2042,7 +2050,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -2053,11 +2061,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 Partition base file name: ds=2000-04-09 input format: org.apache.hadoop.mapred.TextInputFormat @@ -2070,7 +2078,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -2081,7 +2089,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984459 + transient_lastDdlTime 1311931517 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2092,7 +2100,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -2103,11 +2111,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 Partition base file name: ds=2000-04-10 input format: org.apache.hadoop.mapred.TextInputFormat @@ -2120,7 +2128,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -2131,7 +2139,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2142,7 +2150,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -2153,7 +2161,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 @@ -2162,15 +2170,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/tomasz/hive_2011-06-01_20-14-50_070_7918278309965809032/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-25-43_193_5744597926147610591/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/tomasz/hive_2011-06-01_20-14-50_070_7918278309965809032/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-25-43_193_5744597926147610591/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1 columns.types int:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -2186,13 +2195,13 @@ PREHOOK: Input: default@pcr_t1@ds=2000-04-08 PREHOOK: Input: default@pcr_t1@ds=2000-04-09 PREHOOK: Input: default@pcr_t1@ds=2000-04-10 -PREHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-14-50_186_7467964439268319364/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-43_252_4071559680842866158/-mr-10000 POSTHOOK: query: select key, value from pcr_t1 where ds>='2000-04-08' or ds<'2000-04-10' order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@pcr_t1@ds=2000-04-08 POSTHOOK: Input: default@pcr_t1@ds=2000-04-09 POSTHOOK: Input: default@pcr_t1@ds=2000-04-10 -POSTHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-14-50_186_7467964439268319364/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-43_252_4071559680842866158/-mr-10000 POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-09).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -2317,10 +2326,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 Partition base file name: ds=2000-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -2333,7 +2342,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -2344,7 +2353,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984455 + transient_lastDdlTime 1311931513 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2355,7 +2364,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -2366,11 +2375,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 Partition base file name: ds=2000-04-09 input format: org.apache.hadoop.mapred.TextInputFormat @@ -2383,7 +2392,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -2394,7 +2403,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984459 + transient_lastDdlTime 1311931517 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2405,7 +2414,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -2416,7 +2425,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 @@ -2425,15 +2434,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/tomasz/hive_2011-06-01_20-14-53_371_8781736527660496822/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-25-45_996_195479673300228897/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/tomasz/hive_2011-06-01_20-14-53_371_8781736527660496822/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-25-45_996_195479673300228897/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2 columns.types int:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -2448,12 +2458,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@pcr_t1@ds=2000-04-08 PREHOOK: Input: default@pcr_t1@ds=2000-04-09 -PREHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-14-53_489_3007975236537851113/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-46_058_7061582212109052102/-mr-10000 POSTHOOK: query: select key, value, ds from pcr_t1 where (ds='2000-04-08' and key=1) or (ds='2000-04-09' and key=2) order by key, value, ds POSTHOOK: type: QUERY POSTHOOK: Input: default@pcr_t1@ds=2000-04-08 POSTHOOK: Input: default@pcr_t1@ds=2000-04-09 -POSTHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-14-53_489_3007975236537851113/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-46_058_7061582212109052102/-mr-10000 POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-09).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -2525,9 +2535,9 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [t2, t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [t2, t1] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 Partition base file name: ds=2000-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -2540,7 +2550,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -2551,7 +2561,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984455 + transient_lastDdlTime 1311931513 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2562,7 +2572,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -2573,7 +2583,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 @@ -2604,7 +2614,7 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/tomasz/hive_2011-06-01_20-14-56_612_921414605077106335/-mr-10002 + directory: file:/tmp/amarsri/hive_2011-07-29_02-25-48_777_7397747697764876900/-mr-10002 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -2620,7 +2630,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/tomasz/hive_2011-06-01_20-14-56_612_921414605077106335/-mr-10002 + file:/tmp/amarsri/hive_2011-07-29_02-25-48_777_7397747697764876900/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -2642,9 +2652,9 @@ type: string Needs Tagging: false Path -> Alias: - file:/tmp/tomasz/hive_2011-06-01_20-14-56_612_921414605077106335/-mr-10002 [file:/tmp/tomasz/hive_2011-06-01_20-14-56_612_921414605077106335/-mr-10002] + file:/tmp/amarsri/hive_2011-07-29_02-25-48_777_7397747697764876900/-mr-10002 [file:/tmp/amarsri/hive_2011-07-29_02-25-48_777_7397747697764876900/-mr-10002] Path -> Partition: - file:/tmp/tomasz/hive_2011-06-01_20-14-56_612_921414605077106335/-mr-10002 + file:/tmp/amarsri/hive_2011-07-29_02-25-48_777_7397747697764876900/-mr-10002 Partition base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -2665,15 +2675,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/tomasz/hive_2011-06-01_20-14-56_612_921414605077106335/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-25-48_777_7397747697764876900/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/tomasz/hive_2011-06-01_20-14-56_612_921414605077106335/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-25-48_777_7397747697764876900/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3,_col4,_col5 columns.types int:string:string:int:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -2687,11 +2698,11 @@ PREHOOK: query: select * from pcr_t1 t1 join pcr_t1 t2 on t1.key=t2.key and t1.ds='2000-04-08' and t2.ds='2000-04-08' order by t1.key PREHOOK: type: QUERY PREHOOK: Input: default@pcr_t1@ds=2000-04-08 -PREHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-14-56_741_2295421096099695127/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-48_855_4603566476605388516/-mr-10000 POSTHOOK: query: select * from pcr_t1 t1 join pcr_t1 t2 on t1.key=t2.key and t1.ds='2000-04-08' and t2.ds='2000-04-08' order by t1.key POSTHOOK: type: QUERY POSTHOOK: Input: default@pcr_t1@ds=2000-04-08 -POSTHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-14-56_741_2295421096099695127/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-48_855_4603566476605388516/-mr-10000 POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-09).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -2800,10 +2811,10 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [t1] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [t2] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [t2] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 Partition base file name: ds=2000-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -2816,7 +2827,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -2827,7 +2838,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984455 + transient_lastDdlTime 1311931513 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2838,7 +2849,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -2849,11 +2860,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 Partition base file name: ds=2000-04-09 input format: org.apache.hadoop.mapred.TextInputFormat @@ -2866,7 +2877,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 name default.pcr_t1 numFiles 1 numPartitions 3 @@ -2877,7 +2888,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984459 + transient_lastDdlTime 1311931517 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2888,7 +2899,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 3 numPartitions 3 @@ -2899,7 +2910,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 @@ -2930,7 +2941,7 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/tomasz/hive_2011-06-01_20-15-02_758_4300074240039386411/-mr-10002 + directory: file:/tmp/amarsri/hive_2011-07-29_02-25-54_023_2165479406375168597/-mr-10002 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -2946,7 +2957,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/tomasz/hive_2011-06-01_20-15-02_758_4300074240039386411/-mr-10002 + file:/tmp/amarsri/hive_2011-07-29_02-25-54_023_2165479406375168597/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -2968,9 +2979,9 @@ type: string Needs Tagging: false Path -> Alias: - file:/tmp/tomasz/hive_2011-06-01_20-15-02_758_4300074240039386411/-mr-10002 [file:/tmp/tomasz/hive_2011-06-01_20-15-02_758_4300074240039386411/-mr-10002] + file:/tmp/amarsri/hive_2011-07-29_02-25-54_023_2165479406375168597/-mr-10002 [file:/tmp/amarsri/hive_2011-07-29_02-25-54_023_2165479406375168597/-mr-10002] Path -> Partition: - file:/tmp/tomasz/hive_2011-06-01_20-15-02_758_4300074240039386411/-mr-10002 + file:/tmp/amarsri/hive_2011-07-29_02-25-54_023_2165479406375168597/-mr-10002 Partition base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -2991,15 +3002,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/tomasz/hive_2011-06-01_20-15-02_758_4300074240039386411/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-25-54_023_2165479406375168597/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/tomasz/hive_2011-06-01_20-15-02_758_4300074240039386411/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-25-54_023_2165479406375168597/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3,_col4,_col5 columns.types int:string:string:int:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -3014,12 +3026,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@pcr_t1@ds=2000-04-08 PREHOOK: Input: default@pcr_t1@ds=2000-04-09 -PREHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-15-02_999_5248416871455577759/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-54_115_2654671516063101710/-mr-10000 POSTHOOK: query: select * from pcr_t1 t1 join pcr_t1 t2 on t1.key=t2.key and t1.ds='2000-04-08' and t2.ds='2000-04-09' order by t1.key POSTHOOK: type: QUERY POSTHOOK: Input: default@pcr_t1@ds=2000-04-08 POSTHOOK: Input: default@pcr_t1@ds=2000-04-09 -POSTHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-15-02_999_5248416871455577759/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-25-54_115_2654671516063101710/-mr-10000 POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-09).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -3140,12 +3152,12 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-11 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-11 [pcr_t1] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 Partition base file name: ds=2000-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -3158,7 +3170,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 name default.pcr_t1 numFiles 1 numPartitions 4 @@ -3169,7 +3181,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984455 + transient_lastDdlTime 1311931513 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -3180,7 +3192,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 4 numPartitions 4 @@ -3191,11 +3203,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1306984514 + transient_lastDdlTime 1311931563 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 Partition base file name: ds=2000-04-09 input format: org.apache.hadoop.mapred.TextInputFormat @@ -3208,7 +3220,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 name default.pcr_t1 numFiles 1 numPartitions 4 @@ -3219,7 +3231,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984459 + transient_lastDdlTime 1311931517 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -3230,7 +3242,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 4 numPartitions 4 @@ -3241,11 +3253,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1306984514 + transient_lastDdlTime 1311931563 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 Partition base file name: ds=2000-04-10 input format: org.apache.hadoop.mapred.TextInputFormat @@ -3258,7 +3270,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 name default.pcr_t1 numFiles 1 numPartitions 4 @@ -3269,7 +3281,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -3280,7 +3292,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 4 numPartitions 4 @@ -3291,11 +3303,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1306984514 + transient_lastDdlTime 1311931563 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-11 Partition base file name: ds=2000-04-11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -3308,7 +3320,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-11 name default.pcr_t1 numFiles 1 numPartitions 4 @@ -3319,7 +3331,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984514 + transient_lastDdlTime 1311931563 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -3330,7 +3342,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 4 numPartitions 4 @@ -3341,7 +3353,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1306984514 + transient_lastDdlTime 1311931563 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 @@ -3350,15 +3362,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/tomasz/hive_2011-06-01_20-15-14_411_1089680996735017254/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-26-03_088_4372213643425745976/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/tomasz/hive_2011-06-01_20-15-14_411_1089680996735017254/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-26-03_088_4372213643425745976/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2 columns.types int:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -3375,14 +3388,14 @@ PREHOOK: Input: default@pcr_t1@ds=2000-04-09 PREHOOK: Input: default@pcr_t1@ds=2000-04-10 PREHOOK: Input: default@pcr_t1@ds=2000-04-11 -PREHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-15-14_536_2347363292073699128/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-26-03_156_9141465350125919150/-mr-10000 POSTHOOK: query: select key, value, ds from pcr_t1 where (ds>'2000-04-08' and ds<'2000-04-11') or (ds>='2000-04-08' and ds<='2000-04-11' and key=2) order by key, value, ds POSTHOOK: type: QUERY POSTHOOK: Input: default@pcr_t1@ds=2000-04-08 POSTHOOK: Input: default@pcr_t1@ds=2000-04-09 POSTHOOK: Input: default@pcr_t1@ds=2000-04-10 POSTHOOK: Input: default@pcr_t1@ds=2000-04-11 -POSTHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-15-14_536_2347363292073699128/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-26-03_156_9141465350125919150/-mr-10000 POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-09).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -3493,11 +3506,11 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 Partition base file name: ds=2000-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -3510,7 +3523,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 name default.pcr_t1 numFiles 1 numPartitions 4 @@ -3521,7 +3534,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984455 + transient_lastDdlTime 1311931513 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -3532,7 +3545,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 4 numPartitions 4 @@ -3543,11 +3556,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1306984514 + transient_lastDdlTime 1311931563 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 Partition base file name: ds=2000-04-09 input format: org.apache.hadoop.mapred.TextInputFormat @@ -3560,7 +3573,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 name default.pcr_t1 numFiles 1 numPartitions 4 @@ -3571,7 +3584,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984459 + transient_lastDdlTime 1311931517 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -3582,7 +3595,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 4 numPartitions 4 @@ -3593,11 +3606,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1306984514 + transient_lastDdlTime 1311931563 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 Partition base file name: ds=2000-04-10 input format: org.apache.hadoop.mapred.TextInputFormat @@ -3610,7 +3623,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 name default.pcr_t1 numFiles 1 numPartitions 4 @@ -3621,7 +3634,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984463 + transient_lastDdlTime 1311931521 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -3632,7 +3645,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 4 numPartitions 4 @@ -3643,7 +3656,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1306984514 + transient_lastDdlTime 1311931563 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 @@ -3652,15 +3665,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/tomasz/hive_2011-06-01_20-15-17_863_5288314494548058592/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-26-05_957_2370478579747978891/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/tomasz/hive_2011-06-01_20-15-17_863_5288314494548058592/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-26-05_957_2370478579747978891/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2 columns.types int:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -3676,13 +3690,13 @@ PREHOOK: Input: default@pcr_t1@ds=2000-04-08 PREHOOK: Input: default@pcr_t1@ds=2000-04-09 PREHOOK: Input: default@pcr_t1@ds=2000-04-10 -PREHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-15-17_982_2657675519029852039/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-26-06_020_9091114118060516641/-mr-10000 POSTHOOK: query: select key, value, ds from pcr_t1 where (ds>'2000-04-08' and ds<'2000-04-11') or (ds<='2000-04-09' and key=2) order by key, value, ds POSTHOOK: type: QUERY POSTHOOK: Input: default@pcr_t1@ds=2000-04-08 POSTHOOK: Input: default@pcr_t1@ds=2000-04-09 POSTHOOK: Input: default@pcr_t1@ds=2000-04-10 -POSTHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-15-17_982_2657675519029852039/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-26-06_020_9091114118060516641/-mr-10000 POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-09).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -3810,9 +3824,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10004 + directory: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10004 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10000/ + Stats Publishing Key Prefix: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -3822,12 +3836,12 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t2 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t2 name default.pcr_t2 serialization.ddl struct pcr_t2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1306984521 + transient_lastDdlTime 1311931568 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t2 TotalFiles: 1 @@ -3843,9 +3857,9 @@ File Output Operator compressed: false GlobalTableId: 2 - directory: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10005 + directory: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10005 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10002/ + Stats Publishing Key Prefix: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10002/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -3855,12 +3869,12 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t3 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t3 name default.pcr_t3 serialization.ddl struct pcr_t3 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1306984521 + transient_lastDdlTime 1311931568 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t3 TotalFiles: 1 @@ -3868,9 +3882,9 @@ MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 Partition base file name: ds=2000-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -3883,7 +3897,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 name default.pcr_t1 numFiles 1 numPartitions 4 @@ -3894,7 +3908,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984455 + transient_lastDdlTime 1311931513 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -3905,7 +3919,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 4 numPartitions 4 @@ -3916,7 +3930,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1306984514 + transient_lastDdlTime 1311931563 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 @@ -3928,14 +3942,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10004 - destination: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10000 + source: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10004 + destination: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10000 + source: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -3945,28 +3959,28 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t2 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t2 name default.pcr_t2 serialization.ddl struct pcr_t2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1306984521 + transient_lastDdlTime 1311931568 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t2 - tmp directory: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10001 + tmp directory: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10001 Stage: Stage-3 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10000/ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10004 + pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10004 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10000 + directory: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -3977,12 +3991,12 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t2 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t2 name default.pcr_t2 serialization.ddl struct pcr_t2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1306984521 + transient_lastDdlTime 1311931568 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t2 TotalFiles: 1 @@ -3990,9 +4004,9 @@ MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10004 [pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10004] + pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10004 [pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10004] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10004 + pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10004 Partition base file name: -ext-10004 input format: org.apache.hadoop.mapred.TextInputFormat @@ -4003,12 +4017,12 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t2 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t2 name default.pcr_t2 serialization.ddl struct pcr_t2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1306984521 + transient_lastDdlTime 1311931568 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -4019,12 +4033,12 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t2 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t2 name default.pcr_t2 serialization.ddl struct pcr_t2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1306984521 + transient_lastDdlTime 1311931568 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t2 name: default.pcr_t2 @@ -4036,14 +4050,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10005 - destination: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10002 + source: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10005 + destination: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10002 Stage: Stage-1 Move Operator tables: replace: true - source: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10002 + source: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10002 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -4053,28 +4067,28 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t3 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t3 name default.pcr_t3 serialization.ddl struct pcr_t3 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1306984521 + transient_lastDdlTime 1311931568 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t3 - tmp directory: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10003 + tmp directory: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10003 Stage: Stage-7 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10002/ + Stats Aggregation Key Prefix: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10002/ Stage: Stage-8 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10005 + pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10005 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10002 + directory: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10002 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -4085,12 +4099,12 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t3 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t3 name default.pcr_t3 serialization.ddl struct pcr_t3 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1306984521 + transient_lastDdlTime 1311931568 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t3 TotalFiles: 1 @@ -4098,9 +4112,9 @@ MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10005 [pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10005] + pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10005 [pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10005] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-21_352_1116017592704734476/-ext-10005 + pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-08_961_9153972734051597410/-ext-10005 Partition base file name: -ext-10005 input format: org.apache.hadoop.mapred.TextInputFormat @@ -4111,12 +4125,12 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t3 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t3 name default.pcr_t3 serialization.ddl struct pcr_t3 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1306984521 + transient_lastDdlTime 1311931568 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -4127,12 +4141,12 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t3 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t3 name default.pcr_t3 serialization.ddl struct pcr_t3 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1306984521 + transient_lastDdlTime 1311931568 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t3 name: default.pcr_t3 @@ -4225,9 +4239,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10004 + directory: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10004 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10000/ + Stats Publishing Key Prefix: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -4237,7 +4251,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t2 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t2 name default.pcr_t2 numFiles 1 numPartitions 0 @@ -4247,7 +4261,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984526 + transient_lastDdlTime 1311931572 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t2 TotalFiles: 1 @@ -4268,9 +4282,9 @@ File Output Operator compressed: false GlobalTableId: 2 - directory: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10005 + directory: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10005 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10002/ + Stats Publishing Key Prefix: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10002/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -4280,7 +4294,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t3 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t3 name default.pcr_t3 numFiles 1 numPartitions 0 @@ -4290,7 +4304,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984526 + transient_lastDdlTime 1311931572 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t3 TotalFiles: 1 @@ -4298,9 +4312,9 @@ MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 Partition base file name: ds=2000-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -4313,7 +4327,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 name default.pcr_t1 numFiles 1 numPartitions 4 @@ -4324,7 +4338,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984455 + transient_lastDdlTime 1311931513 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -4335,7 +4349,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t1 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t1 name default.pcr_t1 numFiles 4 numPartitions 4 @@ -4346,7 +4360,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1306984514 + transient_lastDdlTime 1311931563 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t1 name: default.pcr_t1 @@ -4358,14 +4372,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10004 - destination: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10000 + source: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10004 + destination: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10000 + source: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -4375,7 +4389,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t2 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t2 name default.pcr_t2 numFiles 1 numPartitions 0 @@ -4385,23 +4399,23 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984526 + transient_lastDdlTime 1311931572 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t2 - tmp directory: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10001 + tmp directory: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10001 Stage: Stage-3 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10000/ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10004 + pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10004 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10000 + directory: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -4412,7 +4426,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t2 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t2 name default.pcr_t2 numFiles 1 numPartitions 0 @@ -4422,7 +4436,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984526 + transient_lastDdlTime 1311931572 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t2 TotalFiles: 1 @@ -4430,9 +4444,9 @@ MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10004 [pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10004] + pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10004 [pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10004] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10004 + pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10004 Partition base file name: -ext-10004 input format: org.apache.hadoop.mapred.TextInputFormat @@ -4443,7 +4457,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t2 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t2 name default.pcr_t2 numFiles 1 numPartitions 0 @@ -4453,7 +4467,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984526 + transient_lastDdlTime 1311931572 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -4464,7 +4478,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t2 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t2 name default.pcr_t2 numFiles 1 numPartitions 0 @@ -4474,7 +4488,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984526 + transient_lastDdlTime 1311931572 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t2 name: default.pcr_t2 @@ -4486,14 +4500,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10005 - destination: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10002 + source: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10005 + destination: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10002 Stage: Stage-1 Move Operator tables: replace: true - source: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10002 + source: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10002 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -4503,7 +4517,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t3 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t3 name default.pcr_t3 numFiles 1 numPartitions 0 @@ -4513,23 +4527,23 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984526 + transient_lastDdlTime 1311931572 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t3 - tmp directory: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10003 + tmp directory: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10003 Stage: Stage-7 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10002/ + Stats Aggregation Key Prefix: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10002/ Stage: Stage-8 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10005 + pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10005 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10002 + directory: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10002 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -4540,7 +4554,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t3 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t3 name default.pcr_t3 numFiles 1 numPartitions 0 @@ -4550,7 +4564,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984526 + transient_lastDdlTime 1311931572 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t3 TotalFiles: 1 @@ -4558,9 +4572,9 @@ MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10005 [pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10005] + pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10005 [pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10005] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/scratchdir/hive_2011-06-01_20-15-26_354_1969910550858833560/-ext-10005 + pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-26-12_844_8364964969890288095/-ext-10005 Partition base file name: -ext-10005 input format: org.apache.hadoop.mapred.TextInputFormat @@ -4571,7 +4585,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t3 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t3 name default.pcr_t3 numFiles 1 numPartitions 0 @@ -4581,7 +4595,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984526 + transient_lastDdlTime 1311931572 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -4592,7 +4606,7 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/pcr_t3 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/pcr_t3 name default.pcr_t3 numFiles 1 numPartitions 0 @@ -4602,7 +4616,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1306984526 + transient_lastDdlTime 1311931572 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.pcr_t3 name: default.pcr_t3 @@ -4693,9 +4707,9 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [srcpart] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [srcpart] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -4709,13 +4723,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1306977859 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -4726,13 +4740,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1306977857 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -4742,15 +4756,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/tomasz/hive_2011-06-01_20-15-31_477_1883153026402938049/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-26-16_781_3979674098856098756/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/tomasz/hive_2011-06-01_20-15-31_477_1883153026402938049/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-26-16_781_3979674098856098756/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1 columns.types string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -4763,10 +4778,10 @@ PREHOOK: query: select key, value from srcpart where ds='2008-04-04' and hr=11 order by key limit 10 PREHOOK: type: QUERY -PREHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-15-31_581_5431886470453083216/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-26-16_831_5474496186957520159/-mr-10000 POSTHOOK: query: select key, value from srcpart where ds='2008-04-04' and hr=11 order by key limit 10 POSTHOOK: type: QUERY -POSTHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-15-31_581_5431886470453083216/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-26-16_831_5474496186957520159/-mr-10000 POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-09).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -4855,10 +4870,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [srcpart] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [srcpart] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [srcpart] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [srcpart] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -4872,13 +4887,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1306977859 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -4889,17 +4904,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1306977857 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -4913,13 +4928,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1306977859 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -4930,13 +4945,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1306977857 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -4945,15 +4960,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/tomasz/hive_2011-06-01_20-15-34_433_3351089244397296225/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-26-19_426_8436546086449017020/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/tomasz/hive_2011-06-01_20-15-34_433_3351089244397296225/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-26-19_426_8436546086449017020/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3 columns.types string:string:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -4968,12 +4984,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -PREHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-15-34_577_8045421042585772080/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-26-19_507_6265596136708347196/-mr-10000 POSTHOOK: query: select key, value, ds, hr from srcpart where ds='2008-04-08' and (hr='11' or hr='12') and key=11 order by key, ds, hr POSTHOOK: type: QUERY POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -POSTHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-15-34_577_8045421042585772080/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-26-19_507_6265596136708347196/-mr-10000 POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-09).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -5064,10 +5080,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [srcpart] - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [srcpart] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [srcpart] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [srcpart] Path -> Partition: - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -5081,13 +5097,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1306977859 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -5098,17 +5114,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1306977857 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -5122,13 +5138,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1306977860 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -5139,13 +5155,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/tomasz/apache-hive/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1306977857 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -5154,15 +5170,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/tomasz/hive_2011-06-01_20-15-37_742_6162655498763425797/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-26-22_220_5945751181226537643/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/tomasz/hive_2011-06-01_20-15-37_742_6162655498763425797/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-26-22_220_5945751181226537643/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3 columns.types string:string:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -5177,12 +5194,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 PREHOOK: Input: default@srcpart@ds=2008-04-09/hr=11 -PREHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-15-37_861_2917598676593294983/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-26-22_283_1922423093365833529/-mr-10000 POSTHOOK: query: select key, value, ds, hr from srcpart where hr='11' and key=11 order by key, ds, hr POSTHOOK: type: QUERY POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 POSTHOOK: Input: default@srcpart@ds=2008-04-09/hr=11 -POSTHOOK: Output: file:/tmp/tomasz/hive_2011-06-01_20-15-37_861_2917598676593294983/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-26-22_283_1922423093365833529/-mr-10000 POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-08).value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: pcr_t1 PARTITION(ds=2000-04-09).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/rand_partitionpruner1.q.out =================================================================== --- ql/src/test/results/clientpositive/rand_partitionpruner1.q.out (revision 1151047) +++ ql/src/test/results/clientpositive/rand_partitionpruner1.q.out (working copy) @@ -34,24 +34,25 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_16-59-15_337_3392401522353054315/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-31-45_680_2689062829459389435/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-10_16-59-15_337_3392401522353054315/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-31-45_680_2689062829459389435/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1 columns.types string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [src] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src [src] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -62,12 +63,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -78,12 +79,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.src name: default.src @@ -96,11 +97,11 @@ PREHOOK: query: select * from src where rand(1) < 0.1 PREHOOK: type: QUERY PREHOOK: Input: default@src -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_16-59-15_417_3701035171047203208/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-31-45_722_4199945592323921585/-mr-10000 POSTHOOK: query: select * from src where rand(1) < 0.1 POSTHOOK: type: QUERY POSTHOOK: Input: default@src -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_16-59-15_417_3701035171047203208/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-31-45_722_4199945592323921585/-mr-10000 409 val_409 429 val_429 209 val_209 Index: ql/src/test/results/clientpositive/rand_partitionpruner3.q.out =================================================================== --- ql/src/test/results/clientpositive/rand_partitionpruner3.q.out (revision 1151047) +++ ql/src/test/results/clientpositive/rand_partitionpruner3.q.out (working copy) @@ -40,24 +40,25 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_16-59-27_535_6604454435367976682/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-31-55_106_4909941376605657644/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-10_16-59-27_535_6604454435367976682/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-31-55_106_4909941376605657644/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3 columns.types string:string:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [a] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -71,13 +72,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -88,13 +89,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -107,11 +108,11 @@ PREHOOK: query: select a.* from srcpart a where rand(1) < 0.1 and a.ds = '2008-04-08' and not(key > 50 or key < 10) and a.hr like '%2' PREHOOK: type: QUERY PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_16-59-27_647_2525111975441270364/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-31-55_158_1236534754931818090/-mr-10000 POSTHOOK: query: select a.* from srcpart a where rand(1) < 0.1 and a.ds = '2008-04-08' and not(key > 50 or key < 10) and a.hr like '%2' POSTHOOK: type: QUERY POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_16-59-27_647_2525111975441270364/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-31-55_158_1236534754931818090/-mr-10000 42 val_42 2008-04-08 12 44 val_44 2008-04-08 12 26 val_26 2008-04-08 12 @@ -157,24 +158,25 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/var/folders/uc/ucuNeMAVGQGzy3459D8z2+++Z0Q/-Tmp-/amarsri/hive_2011-03-17_11-41-58_245_7085869776801424539/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-31-57_820_2488825452898340291/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/var/folders/uc/ucuNeMAVGQGzy3459D8z2+++Z0Q/-Tmp-/amarsri/hive_2011-03-17_11-41-58_245_7085869776801424539/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-31-57_820_2488825452898340291/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3 columns.types string:string:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [a] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -188,13 +190,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -205,13 +207,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -224,11 +226,11 @@ PREHOOK: query: select a.* from srcpart a where a.ds = '2008-04-08' and not(key > 50 or key < 10) and a.hr like '%2' PREHOOK: type: QUERY PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_16-59-31_209_851281034628868825/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-31-57_867_2452411361142393772/-mr-10000 POSTHOOK: query: select a.* from srcpart a where a.ds = '2008-04-08' and not(key > 50 or key < 10) and a.hr like '%2' POSTHOOK: type: QUERY POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_16-59-31_209_851281034628868825/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-31-57_867_2452411361142393772/-mr-10000 27 val_27 2008-04-08 12 37 val_37 2008-04-08 12 15 val_15 2008-04-08 12 Index: ql/src/test/results/clientpositive/regexp_extract.q.out =================================================================== --- ql/src/test/results/clientpositive/regexp_extract.q.out (revision 1151047) +++ ql/src/test/results/clientpositive/regexp_extract.q.out (working copy) @@ -74,9 +74,9 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [tmap:src] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src [tmap:src] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -87,12 +87,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -103,12 +103,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.src name: default.src @@ -124,15 +124,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/var/folders/uc/ucuNeMAVGQGzy3459D8z2+++Z0Q/-Tmp-/amarsri/hive_2011-03-17_11-47-02_223_1393307901149024596/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-36-31_618_809122343246898169/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/var/folders/uc/ucuNeMAVGQGzy3459D8z2+++Z0Q/-Tmp-/amarsri/hive_2011-03-17_11-47-02_223_1393307901149024596/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-36-31_618_809122343246898169/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1 columns.types string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -152,7 +153,7 @@ SELECT tmap.key, regexp_extract(tmap.value, 'val_(\\d+\\t\\d+)',1) WHERE tmap.key < 100 PREHOOK: type: QUERY PREHOOK: Input: default@src -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-01-39_518_2112543687006032682/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-36-31_758_4668312497540501357/-mr-10000 POSTHOOK: query: FROM ( FROM src SELECT TRANSFORM(src.key, src.value, 1+2, 3+4) @@ -162,7 +163,7 @@ SELECT tmap.key, regexp_extract(tmap.value, 'val_(\\d+\\t\\d+)',1) WHERE tmap.key < 100 POSTHOOK: type: QUERY POSTHOOK: Input: default@src -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-01-39_518_2112543687006032682/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-36-31_758_4668312497540501357/-mr-10000 0 0 3 0 0 3 0 0 3 @@ -323,9 +324,9 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [tmap:src] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src [tmap:src] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -336,12 +337,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -352,12 +353,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.src name: default.src @@ -373,15 +374,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/var/folders/uc/ucuNeMAVGQGzy3459D8z2+++Z0Q/-Tmp-/amarsri/hive_2011-03-17_11-47-14_408_4797588639767330030/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-36-34_473_6818960739315877396/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/var/folders/uc/ucuNeMAVGQGzy3459D8z2+++Z0Q/-Tmp-/amarsri/hive_2011-03-17_11-47-14_408_4797588639767330030/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-36-34_473_6818960739315877396/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1 columns.types string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -401,7 +403,7 @@ SELECT tmap.key, regexp_extract(tmap.value, 'val_(\\d+\\t\\d+)') WHERE tmap.key < 100 PREHOOK: type: QUERY PREHOOK: Input: default@src -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-01-43_099_3379262351848426372/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-36-34_516_1969490860055564157/-mr-10000 POSTHOOK: query: FROM ( FROM src SELECT TRANSFORM(src.key, src.value, 1+2, 3+4) @@ -411,7 +413,7 @@ SELECT tmap.key, regexp_extract(tmap.value, 'val_(\\d+\\t\\d+)') WHERE tmap.key < 100 POSTHOOK: type: QUERY POSTHOOK: Input: default@src -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-01-43_099_3379262351848426372/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-36-34_516_1969490860055564157/-mr-10000 0 0 3 0 0 3 0 0 3 Index: ql/src/test/results/clientpositive/router_join_ppr.q.out =================================================================== --- ql/src/test/results/clientpositive/router_join_ppr.q.out (revision 1151047) +++ ql/src/test/results/clientpositive/router_join_ppr.q.out (working copy) @@ -72,13 +72,13 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [a] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [b] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [b] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [b] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [b] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -89,12 +89,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -105,16 +105,16 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.src name: default.src - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -128,13 +128,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -145,17 +145,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -169,13 +169,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -186,17 +186,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -210,13 +210,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -227,17 +227,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -251,13 +251,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -268,13 +268,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -309,15 +309,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_17-01-51_944_8007180207485477580/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-36-41_039_9064638500807494361/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-10_17-01-51_944_8007180207485477580/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-36-41_039_9064638500807494361/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3 columns.types string:string:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -341,7 +342,7 @@ PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 PREHOOK: Input: default@srcpart@ds=2008-04-09/hr=11 PREHOOK: Input: default@srcpart@ds=2008-04-09/hr=12 -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-01-52_113_3892314008195573376/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-36-41_122_3407407733958077234/-mr-10000 POSTHOOK: query: FROM src a RIGHT OUTER JOIN @@ -355,7 +356,7 @@ POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 POSTHOOK: Input: default@srcpart@ds=2008-04-09/hr=11 POSTHOOK: Input: default@srcpart@ds=2008-04-09/hr=12 -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-01-52_113_3892314008195573376/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-36-41_122_3407407733958077234/-mr-10000 17 val_17 17 val_17 17 val_17 17 val_17 18 val_18 18 val_18 @@ -440,11 +441,11 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [b] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [a] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -455,12 +456,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -471,16 +472,16 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.src name: default.src - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -494,13 +495,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -511,17 +512,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -535,13 +536,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -552,13 +553,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -590,15 +591,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_17-01-56_698_3650606708384403170/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-36-44_321_6845388178280487143/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-10_17-01-56_698_3650606708384403170/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-36-44_321_6845388178280487143/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3 columns.types string:string:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -620,7 +622,7 @@ PREHOOK: Input: default@src PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-01-56_851_1955742945505151056/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-36-44_394_6835948715612761564/-mr-10000 POSTHOOK: query: FROM srcpart a RIGHT OUTER JOIN @@ -632,7 +634,7 @@ POSTHOOK: Input: default@src POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-01-56_851_1955742945505151056/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-36-44_394_6835948715612761564/-mr-10000 17 val_17 17 val_17 17 val_17 17 val_17 18 val_18 18 val_18 @@ -719,11 +721,11 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [a] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [b] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [b] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -734,12 +736,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -750,16 +752,16 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.src name: default.src - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -773,13 +775,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -790,17 +792,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -814,13 +816,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -831,13 +833,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -869,15 +871,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_17-02-00_948_2573378846116151448/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-36-47_374_2165206375980655847/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-10_17-02-00_948_2573378846116151448/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-36-47_374_2165206375980655847/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3 columns.types string:string:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -899,7 +902,7 @@ PREHOOK: Input: default@src PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-02-01_089_7899465838633645287/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-36-47_448_806764283341655386/-mr-10000 POSTHOOK: query: FROM src a RIGHT OUTER JOIN @@ -911,7 +914,7 @@ POSTHOOK: Input: default@src POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-02-01_089_7899465838633645287/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-36-47_448_806764283341655386/-mr-10000 17 val_17 17 val_17 17 val_17 17 val_17 18 val_18 18 val_18 @@ -998,13 +1001,13 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [b] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [a] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [a] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src [b] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [a] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [a] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -1015,12 +1018,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1031,16 +1034,16 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.src name: default.src - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1054,13 +1057,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1071,17 +1074,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1095,13 +1098,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1112,17 +1115,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1136,13 +1139,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1153,17 +1156,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1177,13 +1180,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925580 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1194,13 +1197,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378962 + transient_lastDdlTime 1311925579 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -1232,15 +1235,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_17-02-05_196_2971739775305015185/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-36-50_466_6243019789082448028/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-10_17-02-05_196_2971739775305015185/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-36-50_466_6243019789082448028/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3 columns.types string:string:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -1264,7 +1268,7 @@ PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 PREHOOK: Input: default@srcpart@ds=2008-04-09/hr=11 PREHOOK: Input: default@srcpart@ds=2008-04-09/hr=12 -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-02-05_351_3959616875574140681/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-36-50_551_3113314779713967797/-mr-10000 POSTHOOK: query: FROM srcpart a RIGHT OUTER JOIN @@ -1278,7 +1282,7 @@ POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 POSTHOOK: Input: default@srcpart@ds=2008-04-09/hr=11 POSTHOOK: Input: default@srcpart@ds=2008-04-09/hr=12 -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-02-05_351_3959616875574140681/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-36-50_551_3113314779713967797/-mr-10000 17 val_17 17 val_17 17 val_17 17 val_17 18 val_18 18 val_18 Index: ql/src/test/results/clientpositive/sample10.q.out =================================================================== --- ql/src/test/results/clientpositive/sample10.q.out (revision 1151047) +++ ql/src/test/results/clientpositive/sample10.q.out (working copy) @@ -125,7 +125,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe totalSize 687 - transient_lastDdlTime 1310378253 + transient_lastDdlTime 1311932225 serde: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe input format: org.apache.hadoop.hive.ql.io.RCFileInputFormat @@ -148,7 +148,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe totalSize 2748 - transient_lastDdlTime 1310378254 + transient_lastDdlTime 1311932225 serde: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe name: default.srcpartbucket name: default.srcpartbucket @@ -178,7 +178,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe totalSize 687 - transient_lastDdlTime 1310378253 + transient_lastDdlTime 1311932225 serde: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe input format: org.apache.hadoop.hive.ql.io.RCFileInputFormat @@ -201,7 +201,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe totalSize 2748 - transient_lastDdlTime 1310378254 + transient_lastDdlTime 1311932225 serde: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe name: default.srcpartbucket name: default.srcpartbucket @@ -231,7 +231,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe totalSize 687 - transient_lastDdlTime 1310378254 + transient_lastDdlTime 1311932225 serde: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe input format: org.apache.hadoop.hive.ql.io.RCFileInputFormat @@ -254,7 +254,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe totalSize 2748 - transient_lastDdlTime 1310378254 + transient_lastDdlTime 1311932225 serde: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe name: default.srcpartbucket name: default.srcpartbucket @@ -284,7 +284,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe totalSize 687 - transient_lastDdlTime 1310378254 + transient_lastDdlTime 1311932225 serde: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe input format: org.apache.hadoop.hive.ql.io.RCFileInputFormat @@ -307,7 +307,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe totalSize 2748 - transient_lastDdlTime 1310378254 + transient_lastDdlTime 1311932225 serde: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe name: default.srcpartbucket name: default.srcpartbucket @@ -331,15 +331,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/amarsri/hive_2011-07-11_02-57-34_199_3121154239583559117/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-37-05_990_3857426893521422009/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-11_02-57-34_199_3121154239583559117/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-37-05_990_3857426893521422009/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1 columns.types string:bigint + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -356,14 +357,14 @@ PREHOOK: Input: default@srcpartbucket@ds=2008-04-08/hr=12 PREHOOK: Input: default@srcpartbucket@ds=2008-04-09/hr=11 PREHOOK: Input: default@srcpartbucket@ds=2008-04-09/hr=12 -PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-57-34_266_8959693938921606201/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-06_059_9027040796616887679/-mr-10000 POSTHOOK: query: select ds, count(1) from srcpartbucket tablesample (bucket 1 out of 4 on key) where ds is not null group by ds POSTHOOK: type: QUERY POSTHOOK: Input: default@srcpartbucket@ds=2008-04-08/hr=11 POSTHOOK: Input: default@srcpartbucket@ds=2008-04-08/hr=12 POSTHOOK: Input: default@srcpartbucket@ds=2008-04-09/hr=11 POSTHOOK: Input: default@srcpartbucket@ds=2008-04-09/hr=12 -POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-57-34_266_8959693938921606201/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-06_059_9027040796616887679/-mr-10000 POSTHOOK: Lineage: srcpartbucket PARTITION(ds=2008-04-08,hr=11).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: srcpartbucket PARTITION(ds=2008-04-08,hr=11).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: srcpartbucket PARTITION(ds=2008-04-08,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] @@ -380,14 +381,14 @@ PREHOOK: Input: default@srcpartbucket@ds=2008-04-08/hr=12 PREHOOK: Input: default@srcpartbucket@ds=2008-04-09/hr=11 PREHOOK: Input: default@srcpartbucket@ds=2008-04-09/hr=12 -PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-57-37_721_8565979138240547969/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-09_506_6554022661254359835/-mr-10000 POSTHOOK: query: select ds, count(1) from srcpartbucket tablesample (bucket 1 out of 2 on key) where ds is not null group by ds POSTHOOK: type: QUERY POSTHOOK: Input: default@srcpartbucket@ds=2008-04-08/hr=11 POSTHOOK: Input: default@srcpartbucket@ds=2008-04-08/hr=12 POSTHOOK: Input: default@srcpartbucket@ds=2008-04-09/hr=11 POSTHOOK: Input: default@srcpartbucket@ds=2008-04-09/hr=12 -POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-57-37_721_8565979138240547969/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-09_506_6554022661254359835/-mr-10000 POSTHOOK: Lineage: srcpartbucket PARTITION(ds=2008-04-08,hr=11).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: srcpartbucket PARTITION(ds=2008-04-08,hr=11).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: srcpartbucket PARTITION(ds=2008-04-08,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] @@ -404,14 +405,14 @@ PREHOOK: Input: default@srcpartbucket@ds=2008-04-08/hr=12 PREHOOK: Input: default@srcpartbucket@ds=2008-04-09/hr=11 PREHOOK: Input: default@srcpartbucket@ds=2008-04-09/hr=12 -PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-57-41_141_6108039306390462068/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-13_181_4118106463748258247/-mr-10000 POSTHOOK: query: select * from srcpartbucket where ds is not null POSTHOOK: type: QUERY POSTHOOK: Input: default@srcpartbucket@ds=2008-04-08/hr=11 POSTHOOK: Input: default@srcpartbucket@ds=2008-04-08/hr=12 POSTHOOK: Input: default@srcpartbucket@ds=2008-04-09/hr=11 POSTHOOK: Input: default@srcpartbucket@ds=2008-04-09/hr=12 -POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-57-41_141_6108039306390462068/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-13_181_4118106463748258247/-mr-10000 POSTHOOK: Lineage: srcpartbucket PARTITION(ds=2008-04-08,hr=11).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: srcpartbucket PARTITION(ds=2008-04-08,hr=11).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: srcpartbucket PARTITION(ds=2008-04-08,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/sample6.q.out =================================================================== --- ql/src/test/results/clientpositive/sample6.q.out (revision 1151047) +++ ql/src/test/results/clientpositive/sample6.q.out (working copy) @@ -47,9 +47,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-11_02-58-00_018_458728813403565509/-ext-10002 + directory: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-37-31_982_5704699597251195828/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-11_02-58-00_018_458728813403565509/-ext-10000/ + Stats Publishing Key Prefix: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-37-31_982_5704699597251195828/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -64,7 +64,7 @@ serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1310378280 + transient_lastDdlTime 1311932251 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.dest1 TotalFiles: 1 @@ -91,7 +91,7 @@ serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1310371847 + transient_lastDdlTime 1311925581 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -108,7 +108,7 @@ serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1310371847 + transient_lastDdlTime 1311925581 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcbucket name: default.srcbucket @@ -120,14 +120,14 @@ Move Operator files: hdfs directory: true - source: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-11_02-58-00_018_458728813403565509/-ext-10002 - destination: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-11_02-58-00_018_458728813403565509/-ext-10000 + source: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-37-31_982_5704699597251195828/-ext-10002 + destination: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-37-31_982_5704699597251195828/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-11_02-58-00_018_458728813403565509/-ext-10000 + source: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-37-31_982_5704699597251195828/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -142,23 +142,23 @@ serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1310378280 + transient_lastDdlTime 1311932251 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.dest1 - tmp directory: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-11_02-58-00_018_458728813403565509/-ext-10001 + tmp directory: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-37-31_982_5704699597251195828/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-11_02-58-00_018_458728813403565509/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-37-31_982_5704699597251195828/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-11_02-58-00_018_458728813403565509/-ext-10002 + pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-37-31_982_5704699597251195828/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-11_02-58-00_018_458728813403565509/-ext-10000 + directory: pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-37-31_982_5704699597251195828/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -174,7 +174,7 @@ serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1310378280 + transient_lastDdlTime 1311932251 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.dest1 TotalFiles: 1 @@ -182,9 +182,9 @@ MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-11_02-58-00_018_458728813403565509/-ext-10002 [pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-11_02-58-00_018_458728813403565509/-ext-10002] + pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-37-31_982_5704699597251195828/-ext-10002 [pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-37-31_982_5704699597251195828/-ext-10002] Path -> Partition: - pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-11_02-58-00_018_458728813403565509/-ext-10002 + pfile:/home/amarsri/workspace/hive/build/ql/scratchdir/hive_2011-07-29_02-37-31_982_5704699597251195828/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -200,7 +200,7 @@ serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1310378280 + transient_lastDdlTime 1311932251 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -216,7 +216,7 @@ serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1310378280 + transient_lastDdlTime 1311932251 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.dest1 name: default.dest1 @@ -237,11 +237,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-58-03_687_2062247448126517612/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-35_701_9111067759505033062/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-58-03_687_2062247448126517612/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-35_701_9111067759505033062/-mr-10000 POSTHOOK: Lineage: dest1.key SIMPLE [(srcbucket)s.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: dest1.value SIMPLE [(srcbucket)s.FieldSchema(name:value, type:string, comment:null), ] 468 val_469 @@ -562,7 +562,7 @@ serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1310371847 + transient_lastDdlTime 1311925581 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -579,7 +579,7 @@ serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1310371847 + transient_lastDdlTime 1311925581 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcbucket name: default.srcbucket @@ -588,15 +588,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/amarsri/hive_2011-07-11_02-58-03_815_3440650522759974343/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-37-35_825_8745450714551330714/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-11_02-58-03_815_3440650522759974343/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-37-35_825_8745450714551330714/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1 columns.types int:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -611,12 +612,12 @@ ORDER BY key, value PREHOOK: type: QUERY PREHOOK: Input: default@srcbucket -PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-58-03_854_6271750517263563878/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-35_874_3111816659883191804/-mr-10000 POSTHOOK: query: SELECT s.* FROM srcbucket TABLESAMPLE (BUCKET 4 OUT OF 4 on key) s ORDER BY key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@srcbucket -POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-58-03_854_6271750517263563878/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-35_874_3111816659883191804/-mr-10000 POSTHOOK: Lineage: dest1.key SIMPLE [(srcbucket)s.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: dest1.value SIMPLE [(srcbucket)s.FieldSchema(name:value, type:string, comment:null), ] 3 val_4 @@ -927,7 +928,7 @@ serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1310371847 + transient_lastDdlTime 1311925581 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -944,7 +945,7 @@ serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1310371847 + transient_lastDdlTime 1311925581 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcbucket name: default.srcbucket @@ -953,15 +954,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/amarsri/hive_2011-07-11_02-58-06_669_1410317577849689409/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-37-38_544_2020699148739171120/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-11_02-58-06_669_1410317577849689409/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-37-38_544_2020699148739171120/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1 columns.types int:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -976,12 +978,12 @@ ORDER BY key, value PREHOOK: type: QUERY PREHOOK: Input: default@srcbucket -PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-58-06_708_7756573301727009933/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-38_583_3644876912588443471/-mr-10000 POSTHOOK: query: SELECT s.* FROM srcbucket TABLESAMPLE (BUCKET 1 OUT OF 2 on key) s ORDER BY key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@srcbucket -POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-58-06_708_7756573301727009933/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-38_583_3644876912588443471/-mr-10000 POSTHOOK: Lineage: dest1.key SIMPLE [(srcbucket)s.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: dest1.value SIMPLE [(srcbucket)s.FieldSchema(name:value, type:string, comment:null), ] 0 val_0 @@ -1546,7 +1548,7 @@ serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1310371847 + transient_lastDdlTime 1311925581 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1563,7 +1565,7 @@ serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1310371847 + transient_lastDdlTime 1311925581 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcbucket name: default.srcbucket @@ -1572,15 +1574,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/amarsri/hive_2011-07-11_02-58-09_360_6989967716610636074/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-37-41_187_2636859302149149197/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-11_02-58-09_360_6989967716610636074/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-37-41_187_2636859302149149197/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1 columns.types int:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -1595,12 +1598,12 @@ ORDER BY key, value PREHOOK: type: QUERY PREHOOK: Input: default@srcbucket -PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-58-09_405_8746850347504403733/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-41_226_2487967930151022271/-mr-10000 POSTHOOK: query: SELECT s.* FROM srcbucket TABLESAMPLE (BUCKET 1 OUT OF 3 on key) s ORDER BY key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@srcbucket -POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-58-09_405_8746850347504403733/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-41_226_2487967930151022271/-mr-10000 POSTHOOK: Lineage: dest1.key SIMPLE [(srcbucket)s.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: dest1.value SIMPLE [(srcbucket)s.FieldSchema(name:value, type:string, comment:null), ] 0 val_0 @@ -2008,7 +2011,7 @@ serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1310371847 + transient_lastDdlTime 1311925581 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2025,7 +2028,7 @@ serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1310371847 + transient_lastDdlTime 1311925581 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcbucket name: default.srcbucket @@ -2034,15 +2037,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/amarsri/hive_2011-07-11_02-58-12_091_1241249343366878880/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-37-43_869_5477332074036484585/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-11_02-58-12_091_1241249343366878880/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-37-43_869_5477332074036484585/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1 columns.types int:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -2057,12 +2061,12 @@ ORDER BY key, value PREHOOK: type: QUERY PREHOOK: Input: default@srcbucket -PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-58-12_130_7467195593406386569/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-43_907_34238711144428387/-mr-10000 POSTHOOK: query: SELECT s.* FROM srcbucket TABLESAMPLE (BUCKET 2 OUT OF 3 on key) s ORDER BY key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@srcbucket -POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-58-12_130_7467195593406386569/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-43_907_34238711144428387/-mr-10000 POSTHOOK: Lineage: dest1.key SIMPLE [(srcbucket)s.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: dest1.value SIMPLE [(srcbucket)s.FieldSchema(name:value, type:string, comment:null), ] 1 val_2 @@ -2456,7 +2460,7 @@ serialization.ddl struct srcbucket2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1310371848 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2473,7 +2477,7 @@ serialization.ddl struct srcbucket2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1310371848 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcbucket2 name: default.srcbucket2 @@ -2482,15 +2486,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/amarsri/hive_2011-07-11_02-58-14_778_4777537004727741553/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-37-46_572_409447279515671366/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-11_02-58-14_778_4777537004727741553/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-37-46_572_409447279515671366/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1 columns.types int:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -2505,12 +2510,12 @@ ORDER BY key, value PREHOOK: type: QUERY PREHOOK: Input: default@srcbucket2 -PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-58-14_817_7365496467903983867/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-46_611_8367247503514260797/-mr-10000 POSTHOOK: query: SELECT s.* FROM srcbucket2 TABLESAMPLE (BUCKET 1 OUT OF 2 on key) s ORDER BY key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@srcbucket2 -POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-58-14_817_7365496467903983867/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-46_611_8367247503514260797/-mr-10000 POSTHOOK: Lineage: dest1.key SIMPLE [(srcbucket)s.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: dest1.value SIMPLE [(srcbucket)s.FieldSchema(name:value, type:string, comment:null), ] 0 val_0 @@ -2829,7 +2834,7 @@ serialization.ddl struct srcbucket2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1310371848 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2846,7 +2851,7 @@ serialization.ddl struct srcbucket2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1310371848 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcbucket2 name: default.srcbucket2 @@ -2855,15 +2860,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/amarsri/hive_2011-07-11_02-58-17_484_3834914689711003679/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-37-49_337_7481131385551009953/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-11_02-58-17_484_3834914689711003679/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-37-49_337_7481131385551009953/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1 columns.types int:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -2878,12 +2884,12 @@ ORDER BY key, value PREHOOK: type: QUERY PREHOOK: Input: default@srcbucket2 -PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-58-17_524_6116746546442362470/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-49_376_4989134575647074144/-mr-10000 POSTHOOK: query: SELECT s.* FROM srcbucket2 TABLESAMPLE (BUCKET 2 OUT OF 4 on key) s ORDER BY key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@srcbucket2 -POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-58-17_524_6116746546442362470/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-49_376_4989134575647074144/-mr-10000 POSTHOOK: Lineage: dest1.key SIMPLE [(srcbucket)s.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: dest1.value SIMPLE [(srcbucket)s.FieldSchema(name:value, type:string, comment:null), ] 5 val_5 @@ -3100,7 +3106,7 @@ serialization.ddl struct empty_bucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1310378300 + transient_lastDdlTime 1311932272 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -3117,7 +3123,7 @@ serialization.ddl struct empty_bucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1310378300 + transient_lastDdlTime 1311932272 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.empty_bucket name: default.empty_bucket @@ -3126,15 +3132,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/amarsri/hive_2011-07-11_02-58-20_219_7398883575090456577/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-37-52_071_1146053473483662698/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-11_02-58-20_219_7398883575090456577/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-37-52_071_1146053473483662698/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1 columns.types int:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -3149,11 +3156,11 @@ ORDER BY key, value PREHOOK: type: QUERY PREHOOK: Input: default@empty_bucket -PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-58-20_257_2520214403406970744/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-52_109_3485527378839996182/-mr-10000 POSTHOOK: query: SELECT s.* FROM empty_bucket TABLESAMPLE (BUCKET 1 OUT OF 2 on key) s ORDER BY key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@empty_bucket -POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-58-20_257_2520214403406970744/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-52_109_3485527378839996182/-mr-10000 POSTHOOK: Lineage: dest1.key SIMPLE [(srcbucket)s.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: dest1.value SIMPLE [(srcbucket)s.FieldSchema(name:value, type:string, comment:null), ] Index: ql/src/test/results/clientpositive/sample8.q.out =================================================================== --- ql/src/test/results/clientpositive/sample8.q.out (revision 1151047) +++ ql/src/test/results/clientpositive/sample8.q.out (working copy) @@ -68,12 +68,12 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [t, s] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [t] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [t] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [t] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [t, s] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [t] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [t] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [t] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -87,13 +87,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1303268017 + transient_lastDdlTime 1311932220 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -104,17 +104,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1303268017 + transient_lastDdlTime 1311932221 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -128,13 +128,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1303268017 + transient_lastDdlTime 1311932220 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -145,17 +145,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1303268017 + transient_lastDdlTime 1311932221 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -169,13 +169,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1303268017 + transient_lastDdlTime 1311932220 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -186,17 +186,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1303268017 + transient_lastDdlTime 1311932221 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -210,13 +210,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1303268017 + transient_lastDdlTime 1311932221 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -227,13 +227,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1303268017 + transient_lastDdlTime 1311932221 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -265,7 +265,7 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-04-19_19-55-04_226_8845503524181469759/-mr-10002 + directory: file:/tmp/amarsri/hive_2011-07-29_02-37-59_202_2481097602976410482/-mr-10002 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -281,7 +281,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/sdong/hive_2011-04-19_19-55-04_226_8845503524181469759/-mr-10002 + file:/tmp/amarsri/hive_2011-07-29_02-37-59_202_2481097602976410482/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -306,9 +306,9 @@ type: string Needs Tagging: false Path -> Alias: - file:/tmp/sdong/hive_2011-04-19_19-55-04_226_8845503524181469759/-mr-10002 [file:/tmp/sdong/hive_2011-04-19_19-55-04_226_8845503524181469759/-mr-10002] + file:/tmp/amarsri/hive_2011-07-29_02-37-59_202_2481097602976410482/-mr-10002 [file:/tmp/amarsri/hive_2011-07-29_02-37-59_202_2481097602976410482/-mr-10002] Path -> Partition: - file:/tmp/sdong/hive_2011-04-19_19-55-04_226_8845503524181469759/-mr-10002 + file:/tmp/amarsri/hive_2011-07-29_02-37-59_202_2481097602976410482/-mr-10002 Partition base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -329,15 +329,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-04-19_19-55-04_226_8845503524181469759/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-37-59_202_2481097602976410482/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-04-19_19-55-04_226_8845503524181469759/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-37-59_202_2481097602976410482/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3 columns.types string:string:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -359,7 +360,7 @@ PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 PREHOOK: Input: default@srcpart@ds=2008-04-09/hr=11 PREHOOK: Input: default@srcpart@ds=2008-04-09/hr=12 -PREHOOK: Output: file:/tmp/sdong/hive_2011-04-19_19-55-04_470_1513141196244722717/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-59_324_7495148744772475664/-mr-10000 POSTHOOK: query: SELECT s.key, s.value FROM srcpart TABLESAMPLE (BUCKET 1 OUT OF 1 ON key) s JOIN srcpart TABLESAMPLE (BUCKET 1 OUT OF 10 ON key) t @@ -371,7 +372,7 @@ POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 POSTHOOK: Input: default@srcpart@ds=2008-04-09/hr=11 POSTHOOK: Input: default@srcpart@ds=2008-04-09/hr=12 -POSTHOOK: Output: file:/tmp/sdong/hive_2011-04-19_19-55-04_470_1513141196244722717/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-37-59_324_7495148744772475664/-mr-10000 0 val_0 0 val_0 0 val_0 Index: ql/src/test/results/clientpositive/sample9.q.out =================================================================== --- ql/src/test/results/clientpositive/sample9.q.out (revision 1151047) +++ ql/src/test/results/clientpositive/sample9.q.out (working copy) @@ -43,15 +43,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/amarsri/hive_2011-07-11_02-58-35_476_3346956740908751236/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-38-07_729_6216050030210281505/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-11_02-58-35_476_3346956740908751236/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-38-07_729_6216050030210281505/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1 columns.types int:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -77,7 +78,7 @@ serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1310371847 + transient_lastDdlTime 1311925581 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -94,7 +95,7 @@ serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1310371847 + transient_lastDdlTime 1311925581 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcbucket name: default.srcbucket @@ -108,12 +109,12 @@ FROM (SELECT a.* FROM srcbucket TABLESAMPLE (BUCKET 1 OUT OF 2 on key) a) s PREHOOK: type: QUERY PREHOOK: Input: default@srcbucket -PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-58-35_521_5870581689660228083/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-38-07_775_5736364788936244813/-mr-10000 POSTHOOK: query: SELECT s.* FROM (SELECT a.* FROM srcbucket TABLESAMPLE (BUCKET 1 OUT OF 2 on key) a) s POSTHOOK: type: QUERY POSTHOOK: Input: default@srcbucket -POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-11_02-58-35_521_5870581689660228083/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-38-07_775_5736364788936244813/-mr-10000 474 val_475 62 val_63 468 val_469 Index: ql/src/test/results/clientpositive/transform_ppr1.q.out =================================================================== --- ql/src/test/results/clientpositive/transform_ppr1.q.out (revision 1151047) +++ ql/src/test/results/clientpositive/transform_ppr1.q.out (working copy) @@ -73,12 +73,12 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [tmap:src] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [tmap:src] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [tmap:src] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [tmap:src] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [tmap:src] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [tmap:src] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [tmap:src] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [tmap:src] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -92,13 +92,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297386140 + transient_lastDdlTime 1311932220 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -109,17 +109,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297386140 + transient_lastDdlTime 1311932221 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -133,13 +133,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297386140 + transient_lastDdlTime 1311932220 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -150,17 +150,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297386140 + transient_lastDdlTime 1311932221 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -174,13 +174,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297386140 + transient_lastDdlTime 1311932220 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -191,17 +191,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297386140 + transient_lastDdlTime 1311932221 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -215,13 +215,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297386140 + transient_lastDdlTime 1311932221 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -232,13 +232,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297386140 + transient_lastDdlTime 1311932221 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -254,15 +254,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/amarsri/hive_2011-03-19_01-46-48_559_8291501891794719709/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-55-27_476_895941045560052126/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-03-19_01-46-48_559_8291501891794719709/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-55-27_476_895941045560052126/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1 columns.types string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -285,7 +286,7 @@ PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 PREHOOK: Input: default@srcpart@ds=2008-04-09/hr=11 PREHOOK: Input: default@srcpart@ds=2008-04-09/hr=12 -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-24-54_724_4140820560703296860/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-55-27_549_4975728715229031705/-mr-10000 POSTHOOK: query: FROM ( FROM srcpart src SELECT TRANSFORM(src.ds, src.key, src.value) @@ -298,7 +299,7 @@ POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 POSTHOOK: Input: default@srcpart@ds=2008-04-09/hr=11 POSTHOOK: Input: default@srcpart@ds=2008-04-09/hr=12 -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-24-54_724_4140820560703296860/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-55-27_549_4975728715229031705/-mr-10000 0 val_0 0 val_0 0 val_0 Index: ql/src/test/results/clientpositive/transform_ppr2.q.out =================================================================== --- ql/src/test/results/clientpositive/transform_ppr2.q.out (revision 1151047) +++ ql/src/test/results/clientpositive/transform_ppr2.q.out (working copy) @@ -75,10 +75,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [tmap:src] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [tmap:src] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [tmap:src] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [tmap:src] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -92,13 +92,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297386140 + transient_lastDdlTime 1311932220 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -109,17 +109,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297386140 + transient_lastDdlTime 1311932221 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -133,13 +133,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297386140 + transient_lastDdlTime 1311932220 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -150,13 +150,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297386140 + transient_lastDdlTime 1311932221 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -172,15 +172,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/amarsri/hive_2011-03-19_01-46-51_820_4418676794321891468/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_02-55-30_929_3836762161483732659/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-03-19_01-46-51_820_4418676794321891468/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_02-55-30_929_3836762161483732659/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1 columns.types string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -202,7 +203,7 @@ PREHOOK: type: QUERY PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-24-59_452_6247089005584219853/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-55-30_997_2747290623446020046/-mr-10000 POSTHOOK: query: FROM ( FROM srcpart src SELECT TRANSFORM(src.ds, src.key, src.value) @@ -214,7 +215,7 @@ POSTHOOK: type: QUERY POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-24-59_452_6247089005584219853/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_02-55-30_997_2747290623446020046/-mr-10000 0 val_0 0 val_0 0 val_0 Index: ql/src/test/results/clientpositive/udf_explode.q.out =================================================================== --- ql/src/test/results/clientpositive/udf_explode.q.out (revision 1151047) +++ ql/src/test/results/clientpositive/udf_explode.q.out (working copy) @@ -38,24 +38,25 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_17-33-22_671_2259921620431089131/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_03-02-25_984_4613691404546652121/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-10_17-33-22_671_2259921620431089131/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_03-02-25_984_4613691404546652121/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns col columns.types int + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [src] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src [src] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -66,12 +67,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -82,12 +83,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.src name: default.src @@ -133,9 +134,9 @@ type: int Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [a:src] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src [a:src] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -146,12 +147,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -162,12 +163,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.src name: default.src @@ -191,7 +192,7 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_17-33-22_756_4839445772006527677/-mr-10002 + directory: file:/tmp/amarsri/hive_2011-07-29_03-02-26_020_1271591614178800899/-mr-10002 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -207,7 +208,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/sdong/hive_2011-02-10_17-33-22_756_4839445772006527677/-mr-10002 + file:/tmp/amarsri/hive_2011-07-29_03-02-26_020_1271591614178800899/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -222,9 +223,9 @@ type: bigint Needs Tagging: false Path -> Alias: - file:/tmp/sdong/hive_2011-02-10_17-33-22_756_4839445772006527677/-mr-10002 [file:/tmp/sdong/hive_2011-02-10_17-33-22_756_4839445772006527677/-mr-10002] + file:/tmp/amarsri/hive_2011-07-29_03-02-26_020_1271591614178800899/-mr-10002 [file:/tmp/amarsri/hive_2011-07-29_03-02-26_020_1271591614178800899/-mr-10002] Path -> Partition: - file:/tmp/sdong/hive_2011-02-10_17-33-22_756_4839445772006527677/-mr-10002 + file:/tmp/amarsri/hive_2011-07-29_03-02-26_020_1271591614178800899/-mr-10002 Partition base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -260,15 +261,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_17-33-22_756_4839445772006527677/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_03-02-26_020_1271591614178800899/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-10_17-33-22_756_4839445772006527677/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_03-02-26_020_1271591614178800899/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1 columns.types int:bigint + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -282,33 +284,33 @@ PREHOOK: query: SELECT explode(array(1,2,3)) AS myCol FROM src LIMIT 3 PREHOOK: type: QUERY PREHOOK: Input: default@src -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-33-22_847_3998623890609022860/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_03-02-26_068_4835333333085989275/-mr-10000 POSTHOOK: query: SELECT explode(array(1,2,3)) AS myCol FROM src LIMIT 3 POSTHOOK: type: QUERY POSTHOOK: Input: default@src -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-33-22_847_3998623890609022860/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_03-02-26_068_4835333333085989275/-mr-10000 1 2 3 PREHOOK: query: SELECT explode(array(1,2,3)) AS (myCol) FROM src LIMIT 3 PREHOOK: type: QUERY PREHOOK: Input: default@src -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-33-26_152_5865185785205150430/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_03-02-28_588_4477266346311088030/-mr-10000 POSTHOOK: query: SELECT explode(array(1,2,3)) AS (myCol) FROM src LIMIT 3 POSTHOOK: type: QUERY POSTHOOK: Input: default@src -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-33-26_152_5865185785205150430/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_03-02-28_588_4477266346311088030/-mr-10000 1 2 3 PREHOOK: query: SELECT a.myCol, count(1) FROM (SELECT explode(array(1,2,3)) AS myCol FROM src LIMIT 3) a GROUP BY a.myCol PREHOOK: type: QUERY PREHOOK: Input: default@src -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-33-29_424_2456038912240344372/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_03-02-31_169_9213439732006364913/-mr-10000 POSTHOOK: query: SELECT a.myCol, count(1) FROM (SELECT explode(array(1,2,3)) AS myCol FROM src LIMIT 3) a GROUP BY a.myCol POSTHOOK: type: QUERY POSTHOOK: Input: default@src -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-33-29_424_2456038912240344372/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_03-02-31_169_9213439732006364913/-mr-10000 1 1 2 1 3 1 Index: ql/src/test/results/clientpositive/udf_reflect.q.out =================================================================== --- ql/src/test/results/clientpositive/udf_reflect.q.out (revision 1151047) +++ ql/src/test/results/clientpositive/udf_reflect.q.out (working copy) @@ -66,24 +66,25 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_17-39-58_293_2781390290372198499/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_03-07-30_904_4909919395426298063/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-10_17-39-58_293_2781390290372198499/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_03-07-30_904_4909919395426298063/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3,_col4,_col5,_col6 columns.types string:string:string:string:string:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [src] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src [src] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -94,12 +95,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -110,12 +111,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.src name: default.src @@ -135,7 +136,7 @@ FROM src LIMIT 1 PREHOOK: type: QUERY PREHOOK: Input: default@src -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-39-58_382_6716753430415370105/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_03-07-30_943_7325147834615203404/-mr-10000 POSTHOOK: query: SELECT reflect("java.lang.String", "valueOf", 1), reflect("java.lang.String", "isEmpty"), reflect("java.lang.Math", "max", 2, 3), @@ -146,5 +147,5 @@ FROM src LIMIT 1 POSTHOOK: type: QUERY POSTHOOK: Input: default@src -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-39-58_382_6716753430415370105/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_03-07-30_943_7325147834615203404/-mr-10000 1 true 3 2 3 2.7182818284590455 1.0 Index: ql/src/test/results/clientpositive/udtf_explode.q.out =================================================================== --- ql/src/test/results/clientpositive/udtf_explode.q.out (revision 1151047) +++ ql/src/test/results/clientpositive/udtf_explode.q.out (working copy) @@ -38,24 +38,25 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_17-46-44_813_2933283385410388072/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_03-12-36_874_6024799040511850147/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-10_17-46-44_813_2933283385410388072/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_03-12-36_874_6024799040511850147/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns col columns.types int + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [src] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src [src] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -66,12 +67,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -82,12 +83,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.src name: default.src @@ -133,9 +134,9 @@ type: int Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [a:src] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src [a:src] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -146,12 +147,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -162,12 +163,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src name default.src serialization.ddl struct src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297378968 + transient_lastDdlTime 1311925582 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.src name: default.src @@ -191,7 +192,7 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_17-46-44_900_3479860791903660768/-mr-10002 + directory: file:/tmp/amarsri/hive_2011-07-29_03-12-36_910_8089842757292169331/-mr-10002 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -207,7 +208,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/sdong/hive_2011-02-10_17-46-44_900_3479860791903660768/-mr-10002 + file:/tmp/amarsri/hive_2011-07-29_03-12-36_910_8089842757292169331/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -222,9 +223,9 @@ type: bigint Needs Tagging: false Path -> Alias: - file:/tmp/sdong/hive_2011-02-10_17-46-44_900_3479860791903660768/-mr-10002 [file:/tmp/sdong/hive_2011-02-10_17-46-44_900_3479860791903660768/-mr-10002] + file:/tmp/amarsri/hive_2011-07-29_03-12-36_910_8089842757292169331/-mr-10002 [file:/tmp/amarsri/hive_2011-07-29_03-12-36_910_8089842757292169331/-mr-10002] Path -> Partition: - file:/tmp/sdong/hive_2011-02-10_17-46-44_900_3479860791903660768/-mr-10002 + file:/tmp/amarsri/hive_2011-07-29_03-12-36_910_8089842757292169331/-mr-10002 Partition base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -260,15 +261,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_17-46-44_900_3479860791903660768/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_03-12-36_910_8089842757292169331/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-10_17-46-44_900_3479860791903660768/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_03-12-36_910_8089842757292169331/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1 columns.types int:bigint + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -282,33 +284,33 @@ PREHOOK: query: SELECT explode(array(1,2,3)) AS myCol FROM src LIMIT 3 PREHOOK: type: QUERY PREHOOK: Input: default@src -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-46-44_991_4845617813725464653/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_03-12-36_956_2212037566115534449/-mr-10000 POSTHOOK: query: SELECT explode(array(1,2,3)) AS myCol FROM src LIMIT 3 POSTHOOK: type: QUERY POSTHOOK: Input: default@src -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-46-44_991_4845617813725464653/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_03-12-36_956_2212037566115534449/-mr-10000 1 2 3 PREHOOK: query: SELECT explode(array(1,2,3)) AS (myCol) FROM src LIMIT 3 PREHOOK: type: QUERY PREHOOK: Input: default@src -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-46-48_334_8378511418411346233/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_03-12-39_532_81276838400493965/-mr-10000 POSTHOOK: query: SELECT explode(array(1,2,3)) AS (myCol) FROM src LIMIT 3 POSTHOOK: type: QUERY POSTHOOK: Input: default@src -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-46-48_334_8378511418411346233/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_03-12-39_532_81276838400493965/-mr-10000 1 2 3 PREHOOK: query: SELECT a.myCol, count(1) FROM (SELECT explode(array(1,2,3)) AS myCol FROM src LIMIT 3) a GROUP BY a.myCol PREHOOK: type: QUERY PREHOOK: Input: default@src -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-46-51_612_7416766295859987410/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_03-12-42_115_5382946230458994028/-mr-10000 POSTHOOK: query: SELECT a.myCol, count(1) FROM (SELECT explode(array(1,2,3)) AS myCol FROM src LIMIT 3) a GROUP BY a.myCol POSTHOOK: type: QUERY POSTHOOK: Input: default@src -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-46-51_612_7416766295859987410/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_03-12-42_115_5382946230458994028/-mr-10000 1 1 2 1 3 1 Index: ql/src/test/results/clientpositive/union_ppr.q.out =================================================================== --- ql/src/test/results/clientpositive/union_ppr.q.out (revision 1151047) +++ ql/src/test/results/clientpositive/union_ppr.q.out (working copy) @@ -135,10 +135,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [null-subquery1:a-subquery1:x, null-subquery2:a-subquery2:y] - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [null-subquery1:a-subquery1:x, null-subquery2:a-subquery2:y] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [null-subquery1:a-subquery1:x, null-subquery2:a-subquery2:y] + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [null-subquery1:a-subquery1:x, null-subquery2:a-subquery2:y] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -152,13 +152,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297386140 + transient_lastDdlTime 1311932220 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -169,17 +169,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297386140 + transient_lastDdlTime 1311932221 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -193,13 +193,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297386140 + transient_lastDdlTime 1311932220 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -210,13 +210,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart + location pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/srcpart name default.srcpart partition_columns ds/hr serialization.ddl struct srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1297386140 + transient_lastDdlTime 1311932221 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart @@ -225,15 +225,16 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2011-02-10_17-53-20_471_4566273913089562107/-ext-10001 + directory: file:/tmp/amarsri/hive_2011-07-29_03-17-34_171_8790156581115607702/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-10_17-53-20_471_4566273913089562107/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/amarsri/hive_2011-07-29_03-17-34_171_8790156581115607702/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: columns _col0,_col1,_col2,_col3 columns.types string:string:string:string + escape.delim \ serialization.format 1 TotalFiles: 1 GatherStats: false @@ -254,7 +255,7 @@ PREHOOK: type: QUERY PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 PREHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-53-20_632_2881169648637784231/-mr-10000 +PREHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_03-17-34_260_5497182717660314412/-mr-10000 POSTHOOK: query: SELECT * FROM ( SELECT X.* FROM SRCPART X WHERE X.key < 100 UNION ALL @@ -265,7 +266,7 @@ POSTHOOK: type: QUERY POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=11 POSTHOOK: Input: default@srcpart@ds=2008-04-08/hr=12 -POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_17-53-20_632_2881169648637784231/-mr-10000 +POSTHOOK: Output: file:/tmp/amarsri/hive_2011-07-29_03-17-34_260_5497182717660314412/-mr-10000 0 val_0 2008-04-08 11 0 val_0 2008-04-08 11 0 val_0 2008-04-08 11 Index: ql/src/test/results/compiler/plan/cast1.q.xml =================================================================== --- ql/src/test/results/compiler/plan/cast1.q.xml (revision 1151047) +++ ql/src/test/results/compiler/plan/cast1.q.xml (working copy) @@ -66,7 +66,7 @@ transient_lastDdlTime - 1310382265 + 1311936574 @@ -128,7 +128,7 @@ transient_lastDdlTime - 1310382265 + 1311936574 @@ -160,13 +160,13 @@ - file:/tmp/amarsri/hive_2011-07-11_04-04-26_769_5192710661051968856/-ext-10001 + file:/tmp/amarsri/hive_2011-07-29_03-49-35_427_6117010919874585016/-ext-10001 1 - file:/tmp/amarsri/hive_2011-07-11_04-04-26_769_5192710661051968856/-ext-10001/ + file:/tmp/amarsri/hive_2011-07-29_03-49-35_427_6117010919874585016/-ext-10001/ @@ -193,6 +193,10 @@ columns.types int:double:double:double:int:boolean:int + + escape.delim + \ + @@ -1111,7 +1115,7 @@ transient_lastDdlTime - 1310382265 + 1311936574 @@ -1173,7 +1177,7 @@ transient_lastDdlTime - 1310382265 + 1311936574 Index: ql/src/test/results/compiler/plan/groupby2.q.xml =================================================================== --- ql/src/test/results/compiler/plan/groupby2.q.xml (revision 1151047) +++ ql/src/test/results/compiler/plan/groupby2.q.xml (working copy) @@ -1,5 +1,5 @@ - + Stage-3 @@ -62,11 +62,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304059983 + 1311936582 @@ -124,11 +124,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304059983 + 1311936582 @@ -1006,7 +1006,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src src @@ -1018,7 +1018,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src src @@ -1075,11 +1075,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304059983 + 1311936582 @@ -1137,11 +1137,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304059983 + 1311936582 @@ -1167,13 +1167,13 @@ - file:/tmp/sdong/hive_2011-04-28_23-53-05_717_3597345881693191328/-ext-10001 + file:/tmp/amarsri/hive_2011-07-29_03-49-43_411_7553638377200385793/-ext-10001 1 - file:/tmp/sdong/hive_2011-04-28_23-53-05_717_3597345881693191328/-ext-10001/ + file:/tmp/amarsri/hive_2011-07-29_03-49-43_411_7553638377200385793/-ext-10001/ @@ -1200,6 +1200,10 @@ columns.types string:bigint:string + + escape.delim + \ + Index: ql/src/test/results/compiler/plan/groupby3.q.xml =================================================================== --- ql/src/test/results/compiler/plan/groupby3.q.xml (revision 1151047) +++ ql/src/test/results/compiler/plan/groupby3.q.xml (working copy) @@ -1,5 +1,5 @@ - + Stage-3 @@ -62,11 +62,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304059992 + 1311936586 @@ -124,11 +124,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304059992 + 1311936586 @@ -1202,7 +1202,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src src @@ -1214,7 +1214,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src src @@ -1271,11 +1271,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304059992 + 1311936586 @@ -1333,11 +1333,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304059992 + 1311936586 @@ -1363,13 +1363,13 @@ - file:/tmp/sdong/hive_2011-04-28_23-53-14_115_4110241814083983918/-ext-10001 + file:/tmp/amarsri/hive_2011-07-29_03-49-47_483_3173455245440899986/-ext-10001 1 - file:/tmp/sdong/hive_2011-04-28_23-53-14_115_4110241814083983918/-ext-10001/ + file:/tmp/amarsri/hive_2011-07-29_03-49-47_483_3173455245440899986/-ext-10001/ @@ -1396,6 +1396,10 @@ columns.types double:double:double:string:string + + escape.delim + \ + Index: ql/src/test/results/compiler/plan/groupby4.q.xml =================================================================== --- ql/src/test/results/compiler/plan/groupby4.q.xml (revision 1151047) +++ ql/src/test/results/compiler/plan/groupby4.q.xml (working copy) @@ -1,5 +1,5 @@ - + Stage-3 @@ -62,11 +62,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060000 + 1311936590 @@ -124,11 +124,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060000 + 1311936590 @@ -664,7 +664,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src src @@ -676,7 +676,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src src @@ -733,11 +733,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060000 + 1311936590 @@ -795,11 +795,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060000 + 1311936590 @@ -825,13 +825,13 @@ - file:/tmp/sdong/hive_2011-04-28_23-53-22_783_4211806616452121435/-ext-10001 + file:/tmp/amarsri/hive_2011-07-29_03-49-51_354_3235192852724523271/-ext-10001 1 - file:/tmp/sdong/hive_2011-04-28_23-53-22_783_4211806616452121435/-ext-10001/ + file:/tmp/amarsri/hive_2011-07-29_03-49-51_354_3235192852724523271/-ext-10001/ @@ -858,6 +858,10 @@ columns.types string + + escape.delim + \ + Index: ql/src/test/results/compiler/plan/groupby5.q.xml =================================================================== --- ql/src/test/results/compiler/plan/groupby5.q.xml (revision 1151047) +++ ql/src/test/results/compiler/plan/groupby5.q.xml (working copy) @@ -1,5 +1,5 @@ - + Stage-3 @@ -62,11 +62,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060009 + 1311936594 @@ -124,11 +124,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060009 + 1311936594 @@ -757,7 +757,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src src @@ -769,7 +769,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src src @@ -826,11 +826,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060009 + 1311936594 @@ -888,11 +888,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060009 + 1311936594 @@ -918,13 +918,13 @@ - file:/tmp/sdong/hive_2011-04-28_23-53-31_497_7161274320844726028/-ext-10001 + file:/tmp/amarsri/hive_2011-07-29_03-49-55_024_1396882333953853712/-ext-10001 1 - file:/tmp/sdong/hive_2011-04-28_23-53-31_497_7161274320844726028/-ext-10001/ + file:/tmp/amarsri/hive_2011-07-29_03-49-55_024_1396882333953853712/-ext-10001/ @@ -951,6 +951,10 @@ columns.types string:double + + escape.delim + \ + Index: ql/src/test/results/compiler/plan/groupby6.q.xml =================================================================== --- ql/src/test/results/compiler/plan/groupby6.q.xml (revision 1151047) +++ ql/src/test/results/compiler/plan/groupby6.q.xml (working copy) @@ -1,5 +1,5 @@ - + Stage-3 @@ -62,11 +62,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060018 + 1311936597 @@ -124,11 +124,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060018 + 1311936597 @@ -664,7 +664,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src src @@ -676,7 +676,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src src @@ -733,11 +733,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060018 + 1311936597 @@ -795,11 +795,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060018 + 1311936597 @@ -825,13 +825,13 @@ - file:/tmp/sdong/hive_2011-04-28_23-53-40_990_4453382953456116593/-ext-10001 + file:/tmp/amarsri/hive_2011-07-29_03-49-58_528_4584339015571420380/-ext-10001 1 - file:/tmp/sdong/hive_2011-04-28_23-53-40_990_4453382953456116593/-ext-10001/ + file:/tmp/amarsri/hive_2011-07-29_03-49-58_528_4584339015571420380/-ext-10001/ @@ -858,6 +858,10 @@ columns.types string + + escape.delim + \ + Index: ql/src/test/results/compiler/plan/input20.q.xml =================================================================== --- ql/src/test/results/compiler/plan/input20.q.xml (revision 1151047) +++ ql/src/test/results/compiler/plan/input20.q.xml (working copy) @@ -1,5 +1,5 @@ - + Stage-3 @@ -62,11 +62,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060045 + 1311936608 @@ -124,11 +124,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060045 + 1311936608 @@ -844,7 +844,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src tmap:src @@ -856,7 +856,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src src @@ -913,11 +913,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060045 + 1311936608 @@ -975,11 +975,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060045 + 1311936608 @@ -1009,13 +1009,13 @@ - file:/tmp/sdong/hive_2011-04-28_23-54-07_277_1593602384616313456/-ext-10001 + file:/tmp/amarsri/hive_2011-07-29_03-50-09_317_297939364232626966/-ext-10001 1 - file:/tmp/sdong/hive_2011-04-28_23-54-07_277_1593602384616313456/-ext-10001/ + file:/tmp/amarsri/hive_2011-07-29_03-50-09_317_297939364232626966/-ext-10001/ @@ -1042,6 +1042,10 @@ columns.types string:string + + escape.delim + \ + Index: ql/src/test/results/compiler/plan/input8.q.xml =================================================================== --- ql/src/test/results/compiler/plan/input8.q.xml (revision 1151047) +++ ql/src/test/results/compiler/plan/input8.q.xml (working copy) @@ -1,5 +1,5 @@ - + Stage-3 @@ -62,11 +62,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src1 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src1 transient_lastDdlTime - 1304060101 + 1311936630 @@ -124,11 +124,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src1 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src1 transient_lastDdlTime - 1304060101 + 1311936630 @@ -156,13 +156,13 @@ - file:/tmp/sdong/hive_2011-04-28_23-55-03_769_3651994780978632706/-ext-10001 + file:/tmp/amarsri/hive_2011-07-29_03-50-31_593_5197882376284506188/-ext-10001 1 - file:/tmp/sdong/hive_2011-04-28_23-55-03_769_3651994780978632706/-ext-10001/ + file:/tmp/amarsri/hive_2011-07-29_03-50-31_593_5197882376284506188/-ext-10001/ @@ -189,6 +189,10 @@ columns.types int:double:tinyint + + escape.delim + \ + @@ -628,7 +632,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src1 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src1 src1 @@ -640,7 +644,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src1 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src1 src1 @@ -697,11 +701,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src1 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src1 transient_lastDdlTime - 1304060101 + 1311936630 @@ -759,11 +763,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src1 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src1 transient_lastDdlTime - 1304060101 + 1311936630 Index: ql/src/test/results/compiler/plan/input_part1.q.xml =================================================================== --- ql/src/test/results/compiler/plan/input_part1.q.xml (revision 1151047) +++ ql/src/test/results/compiler/plan/input_part1.q.xml (working copy) @@ -79,7 +79,7 @@ transient_lastDdlTime - 1310382326 + 1311936635 @@ -145,7 +145,7 @@ transient_lastDdlTime - 1310382326 + 1311936635 @@ -177,13 +177,13 @@ - file:/tmp/amarsri/hive_2011-07-11_04-05-29_362_7332883780675641825/-ext-10001 + file:/tmp/amarsri/hive_2011-07-29_03-50-38_444_1027580750179467489/-ext-10001 1 - file:/tmp/amarsri/hive_2011-07-11_04-05-29_362_7332883780675641825/-ext-10001/ + file:/tmp/amarsri/hive_2011-07-29_03-50-38_444_1027580750179467489/-ext-10001/ @@ -210,6 +210,10 @@ columns.types string:string:string:string + + escape.delim + \ + @@ -834,7 +838,7 @@ transient_lastDdlTime - 1310382326 + 1311936635 @@ -900,7 +904,7 @@ transient_lastDdlTime - 1310382326 + 1311936635 Index: ql/src/test/results/compiler/plan/input_testxpath.q.xml =================================================================== --- ql/src/test/results/compiler/plan/input_testxpath.q.xml (revision 1151047) +++ ql/src/test/results/compiler/plan/input_testxpath.q.xml (working copy) @@ -1,5 +1,5 @@ - + Stage-3 @@ -66,11 +66,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src_thrift + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src_thrift transient_lastDdlTime - 1304060141 + 1311936645 @@ -132,11 +132,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src_thrift + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src_thrift transient_lastDdlTime - 1304060141 + 1311936645 @@ -164,13 +164,13 @@ - file:/tmp/sdong/hive_2011-04-28_23-55-42_511_2568007288175996973/-ext-10001 + file:/tmp/amarsri/hive_2011-07-29_03-50-45_470_7470674189494615755/-ext-10001 1 - file:/tmp/sdong/hive_2011-04-28_23-55-42_511_2568007288175996973/-ext-10001/ + file:/tmp/amarsri/hive_2011-07-29_03-50-45_470_7470674189494615755/-ext-10001/ @@ -197,6 +197,10 @@ columns.types int:string:string + + escape.delim + \ + @@ -749,7 +753,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src_thrift + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src_thrift src_thrift @@ -761,7 +765,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src_thrift + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src_thrift src_thrift @@ -822,11 +826,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src_thrift + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src_thrift transient_lastDdlTime - 1304060141 + 1311936645 @@ -888,11 +892,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src_thrift + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src_thrift transient_lastDdlTime - 1304060141 + 1311936645 Index: ql/src/test/results/compiler/plan/input_testxpath2.q.xml =================================================================== --- ql/src/test/results/compiler/plan/input_testxpath2.q.xml (revision 1151047) +++ ql/src/test/results/compiler/plan/input_testxpath2.q.xml (working copy) @@ -70,7 +70,7 @@ transient_lastDdlTime - 1310382339 + 1311936648 @@ -136,7 +136,7 @@ transient_lastDdlTime - 1310382339 + 1311936648 @@ -168,13 +168,13 @@ - file:/tmp/amarsri/hive_2011-07-11_04-05-39_617_1990531796790632873/-ext-10001 + file:/tmp/amarsri/hive_2011-07-29_03-50-48_916_7177053709345050189/-ext-10001 1 - file:/tmp/amarsri/hive_2011-07-11_04-05-39_617_1990531796790632873/-ext-10001/ + file:/tmp/amarsri/hive_2011-07-29_03-50-48_916_7177053709345050189/-ext-10001/ @@ -201,6 +201,10 @@ columns.types int:int:int + + escape.delim + \ + @@ -914,7 +918,7 @@ transient_lastDdlTime - 1310382339 + 1311936648 @@ -980,7 +984,7 @@ transient_lastDdlTime - 1310382339 + 1311936648 Index: ql/src/test/results/compiler/plan/join4.q.xml =================================================================== --- ql/src/test/results/compiler/plan/join4.q.xml (revision 1151047) +++ ql/src/test/results/compiler/plan/join4.q.xml (working copy) @@ -1,5 +1,5 @@ - + Stage-3 @@ -62,11 +62,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060189 + 1311936662 @@ -124,11 +124,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060189 + 1311936662 @@ -194,11 +194,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060189 + 1311936662 @@ -256,11 +256,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060189 + 1311936662 @@ -1450,7 +1450,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src c:a:src1 @@ -1465,7 +1465,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src src @@ -1522,11 +1522,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060189 + 1311936662 @@ -1584,11 +1584,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060189 + 1311936662 @@ -1618,13 +1618,13 @@ - file:/tmp/sdong/hive_2011-04-28_23-56-31_814_4555513274717878585/-ext-10001 + file:/tmp/amarsri/hive_2011-07-29_03-51-03_433_4522703088324288965/-ext-10001 1 - file:/tmp/sdong/hive_2011-04-28_23-56-31_814_4555513274717878585/-ext-10001/ + file:/tmp/amarsri/hive_2011-07-29_03-51-03_433_4522703088324288965/-ext-10001/ @@ -1651,6 +1651,10 @@ columns.types string:string:string:string + + escape.delim + \ + Index: ql/src/test/results/compiler/plan/join5.q.xml =================================================================== --- ql/src/test/results/compiler/plan/join5.q.xml (revision 1151047) +++ ql/src/test/results/compiler/plan/join5.q.xml (working copy) @@ -1,5 +1,5 @@ - + Stage-3 @@ -62,11 +62,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060199 + 1311936666 @@ -124,11 +124,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060199 + 1311936666 @@ -194,11 +194,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060199 + 1311936666 @@ -256,11 +256,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060199 + 1311936666 @@ -1450,7 +1450,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src c:a:src1 @@ -1465,7 +1465,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src src @@ -1522,11 +1522,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060199 + 1311936666 @@ -1584,11 +1584,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060199 + 1311936666 @@ -1618,13 +1618,13 @@ - file:/tmp/sdong/hive_2011-04-28_23-56-41_621_1912135110552418770/-ext-10001 + file:/tmp/amarsri/hive_2011-07-29_03-51-08_045_4499128247370683884/-ext-10001 1 - file:/tmp/sdong/hive_2011-04-28_23-56-41_621_1912135110552418770/-ext-10001/ + file:/tmp/amarsri/hive_2011-07-29_03-51-08_045_4499128247370683884/-ext-10001/ @@ -1651,6 +1651,10 @@ columns.types string:string:string:string + + escape.delim + \ + Index: ql/src/test/results/compiler/plan/join6.q.xml =================================================================== --- ql/src/test/results/compiler/plan/join6.q.xml (revision 1151047) +++ ql/src/test/results/compiler/plan/join6.q.xml (working copy) @@ -1,5 +1,5 @@ - + Stage-3 @@ -62,11 +62,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060208 + 1311936670 @@ -124,11 +124,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060208 + 1311936670 @@ -194,11 +194,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060208 + 1311936670 @@ -256,11 +256,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060208 + 1311936670 @@ -1450,7 +1450,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src c:a:src1 @@ -1465,7 +1465,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src src @@ -1522,11 +1522,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060208 + 1311936670 @@ -1584,11 +1584,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060208 + 1311936670 @@ -1618,13 +1618,13 @@ - file:/tmp/sdong/hive_2011-04-28_23-56-51_532_7894525993878506790/-ext-10001 + file:/tmp/amarsri/hive_2011-07-29_03-51-11_950_1498889883855106258/-ext-10001 1 - file:/tmp/sdong/hive_2011-04-28_23-56-51_532_7894525993878506790/-ext-10001/ + file:/tmp/amarsri/hive_2011-07-29_03-51-11_950_1498889883855106258/-ext-10001/ @@ -1651,6 +1651,10 @@ columns.types string:string:string:string + + escape.delim + \ + Index: ql/src/test/results/compiler/plan/join7.q.xml =================================================================== --- ql/src/test/results/compiler/plan/join7.q.xml (revision 1151047) +++ ql/src/test/results/compiler/plan/join7.q.xml (working copy) @@ -1,5 +1,5 @@ - + Stage-3 @@ -62,11 +62,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060218 + 1311936674 @@ -124,11 +124,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060218 + 1311936674 @@ -194,11 +194,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060218 + 1311936674 @@ -256,11 +256,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060218 + 1311936674 @@ -326,11 +326,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060218 + 1311936674 @@ -388,11 +388,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060218 + 1311936674 @@ -2155,7 +2155,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src c:a:src1 @@ -2173,7 +2173,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src src @@ -2230,11 +2230,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060218 + 1311936674 @@ -2292,11 +2292,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060218 + 1311936674 @@ -2326,13 +2326,13 @@ - file:/tmp/sdong/hive_2011-04-28_23-57-01_518_8028086550576788513/-ext-10001 + file:/tmp/amarsri/hive_2011-07-29_03-51-15_588_3290688451974525177/-ext-10001 1 - file:/tmp/sdong/hive_2011-04-28_23-57-01_518_8028086550576788513/-ext-10001/ + file:/tmp/amarsri/hive_2011-07-29_03-51-15_588_3290688451974525177/-ext-10001/ @@ -2359,6 +2359,10 @@ columns.types string:string:string:string:string:string + + escape.delim + \ + Index: ql/src/test/results/compiler/plan/join8.q.xml =================================================================== --- ql/src/test/results/compiler/plan/join8.q.xml (revision 1151047) +++ ql/src/test/results/compiler/plan/join8.q.xml (working copy) @@ -1,5 +1,5 @@ - + Stage-3 @@ -62,11 +62,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060229 + 1311936678 @@ -124,11 +124,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060229 + 1311936678 @@ -194,11 +194,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060229 + 1311936678 @@ -256,11 +256,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060229 + 1311936678 @@ -1450,7 +1450,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src c:a:src1 @@ -1465,7 +1465,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src src @@ -1522,11 +1522,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060229 + 1311936678 @@ -1584,11 +1584,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060229 + 1311936678 @@ -1622,13 +1622,13 @@ - file:/tmp/sdong/hive_2011-04-28_23-57-11_965_3434682925105898020/-ext-10001 + file:/tmp/amarsri/hive_2011-07-29_03-51-19_434_7116411006668437835/-ext-10001 1 - file:/tmp/sdong/hive_2011-04-28_23-57-11_965_3434682925105898020/-ext-10001/ + file:/tmp/amarsri/hive_2011-07-29_03-51-19_434_7116411006668437835/-ext-10001/ @@ -1655,6 +1655,10 @@ columns.types string:string:string:string + + escape.delim + \ + Index: ql/src/test/results/compiler/plan/sample1.q.xml =================================================================== --- ql/src/test/results/compiler/plan/sample1.q.xml (revision 1151047) +++ ql/src/test/results/compiler/plan/sample1.q.xml (working copy) @@ -79,7 +79,7 @@ transient_lastDdlTime - 1310382369 + 1311936680 @@ -145,7 +145,7 @@ transient_lastDdlTime - 1310382369 + 1311936680 @@ -177,13 +177,13 @@ - file:/tmp/amarsri/hive_2011-07-11_04-06-12_350_8086266026815616219/-ext-10001 + file:/tmp/amarsri/hive_2011-07-29_03-51-23_322_1563823747274580614/-ext-10001 1 - file:/tmp/amarsri/hive_2011-07-11_04-06-12_350_8086266026815616219/-ext-10001/ + file:/tmp/amarsri/hive_2011-07-29_03-51-23_322_1563823747274580614/-ext-10001/ @@ -210,6 +210,10 @@ columns.types string:string:string:string + + escape.delim + \ + @@ -946,7 +950,7 @@ transient_lastDdlTime - 1310382369 + 1311936680 @@ -1012,7 +1016,7 @@ transient_lastDdlTime - 1310382369 + 1311936680 Index: ql/src/test/results/compiler/plan/udf1.q.xml =================================================================== --- ql/src/test/results/compiler/plan/udf1.q.xml (revision 1151047) +++ ql/src/test/results/compiler/plan/udf1.q.xml (working copy) @@ -66,7 +66,7 @@ transient_lastDdlTime - 1310382399 + 1311936711 @@ -128,7 +128,7 @@ transient_lastDdlTime - 1310382399 + 1311936711 @@ -160,13 +160,13 @@ - file:/tmp/amarsri/hive_2011-07-11_04-06-40_095_2249714112585544624/-ext-10001 + file:/tmp/amarsri/hive_2011-07-29_03-51-52_132_4783377348523182065/-ext-10001 1 - file:/tmp/amarsri/hive_2011-07-11_04-06-40_095_2249714112585544624/-ext-10001/ + file:/tmp/amarsri/hive_2011-07-29_03-51-52_132_4783377348523182065/-ext-10001/ @@ -193,6 +193,10 @@ columns.types boolean:boolean:boolean:boolean:boolean:boolean:boolean:boolean:boolean:boolean:boolean:boolean:boolean:string:string:string:string + + escape.delim + \ + @@ -1910,7 +1914,7 @@ transient_lastDdlTime - 1310382399 + 1311936711 @@ -1972,7 +1976,7 @@ transient_lastDdlTime - 1310382399 + 1311936711 Index: ql/src/test/results/compiler/plan/udf4.q.xml =================================================================== --- ql/src/test/results/compiler/plan/udf4.q.xml (revision 1151047) +++ ql/src/test/results/compiler/plan/udf4.q.xml (working copy) @@ -1,5 +1,5 @@ - + Stage-3 @@ -62,11 +62,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/dest1 transient_lastDdlTime - 1304060332 + 1311936715 @@ -124,11 +124,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/dest1 transient_lastDdlTime - 1304060332 + 1311936715 @@ -156,13 +156,13 @@ - file:/tmp/sdong/hive_2011-04-28_23-58-52_993_5880503968024471683/-ext-10001 + file:/tmp/amarsri/hive_2011-07-29_03-51-55_853_5943343071107762901/-ext-10001 1 - file:/tmp/sdong/hive_2011-04-28_23-58-52_993_5880503968024471683/-ext-10001/ + file:/tmp/amarsri/hive_2011-07-29_03-51-55_853_5943343071107762901/-ext-10001/ @@ -189,6 +189,10 @@ columns.types bigint:bigint:bigint:bigint:bigint:bigint:double:double:double:bigint:bigint:bigint:bigint:double:int:int:int:int:int + + escape.delim + \ + @@ -1761,7 +1765,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/dest1 dest1 @@ -1773,7 +1777,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/dest1 dest1 @@ -1830,11 +1834,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/dest1 transient_lastDdlTime - 1304060332 + 1311936715 @@ -1892,11 +1896,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/dest1 transient_lastDdlTime - 1304060332 + 1311936715 Index: ql/src/test/results/compiler/plan/udf6.q.xml =================================================================== --- ql/src/test/results/compiler/plan/udf6.q.xml (revision 1151047) +++ ql/src/test/results/compiler/plan/udf6.q.xml (working copy) @@ -1,5 +1,5 @@ - + Stage-3 @@ -62,11 +62,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060340 + 1311936718 @@ -124,11 +124,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060340 + 1311936718 @@ -156,13 +156,13 @@ - file:/tmp/sdong/hive_2011-04-28_23-59-03_071_7503340157388853266/-ext-10001 + file:/tmp/amarsri/hive_2011-07-29_03-51-59_416_2646186509346417479/-ext-10001 1 - file:/tmp/sdong/hive_2011-04-28_23-59-03_071_7503340157388853266/-ext-10001/ + file:/tmp/amarsri/hive_2011-07-29_03-51-59_416_2646186509346417479/-ext-10001/ @@ -189,6 +189,10 @@ columns.types string:int + + escape.delim + \ + @@ -565,7 +569,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src src @@ -577,7 +581,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src src @@ -634,11 +638,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060340 + 1311936718 @@ -696,11 +700,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060340 + 1311936718 Index: ql/src/test/results/compiler/plan/udf_case.q.xml =================================================================== --- ql/src/test/results/compiler/plan/udf_case.q.xml (revision 1151047) +++ ql/src/test/results/compiler/plan/udf_case.q.xml (working copy) @@ -1,5 +1,5 @@ - + Stage-3 @@ -62,11 +62,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060350 + 1311936721 @@ -124,11 +124,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060350 + 1311936721 @@ -160,13 +160,13 @@ - file:/tmp/sdong/hive_2011-04-28_23-59-13_016_4418197678415872532/-ext-10001 + file:/tmp/amarsri/hive_2011-07-29_03-52-02_846_8537288013772011572/-ext-10001 1 - file:/tmp/sdong/hive_2011-04-28_23-59-13_016_4418197678415872532/-ext-10001/ + file:/tmp/amarsri/hive_2011-07-29_03-52-02_846_8537288013772011572/-ext-10001/ @@ -193,6 +193,10 @@ columns.types int:int + + escape.delim + \ + @@ -662,7 +666,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src src @@ -674,7 +678,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src src @@ -731,11 +735,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060350 + 1311936721 @@ -793,11 +797,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060350 + 1311936721 Index: ql/src/test/results/compiler/plan/udf_when.q.xml =================================================================== --- ql/src/test/results/compiler/plan/udf_when.q.xml (revision 1151047) +++ ql/src/test/results/compiler/plan/udf_when.q.xml (working copy) @@ -1,5 +1,5 @@ - + Stage-3 @@ -62,11 +62,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060360 + 1311936725 @@ -124,11 +124,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060360 + 1311936725 @@ -160,13 +160,13 @@ - file:/tmp/sdong/hive_2011-04-28_23-59-23_011_8707825845974734698/-ext-10001 + file:/tmp/amarsri/hive_2011-07-29_03-52-06_251_4711129964311178392/-ext-10001 1 - file:/tmp/sdong/hive_2011-04-28_23-59-23_011_8707825845974734698/-ext-10001/ + file:/tmp/amarsri/hive_2011-07-29_03-52-06_251_4711129964311178392/-ext-10001/ @@ -193,6 +193,10 @@ columns.types int:int + + escape.delim + \ + @@ -742,7 +746,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src src @@ -754,7 +758,7 @@ - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src src @@ -811,11 +815,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060360 + 1311936725 @@ -873,11 +877,11 @@ location - pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src + pfile:/home/amarsri/workspace/hive/build/ql/test/data/warehouse/src transient_lastDdlTime - 1304060360 + 1311936725