Index: metastore/src/java/org/apache/hadoop/hive/metastore/MetaStoreUtils.java =================================================================== --- metastore/src/java/org/apache/hadoop/hive/metastore/MetaStoreUtils.java (revision 1068243) +++ metastore/src/java/org/apache/hadoop/hive/metastore/MetaStoreUtils.java (working copy) @@ -455,20 +455,20 @@ public static Properties getSchema( org.apache.hadoop.hive.metastore.api.Table table) { return MetaStoreUtils.getSchema(table.getSd(), table.getSd(), table - .getParameters(), table.getTableName(), table.getPartitionKeys()); + .getParameters(), table.getDbName(), table.getTableName(), table.getPartitionKeys()); } public static Properties getSchema( org.apache.hadoop.hive.metastore.api.Partition part, org.apache.hadoop.hive.metastore.api.Table table) { return MetaStoreUtils.getSchema(part.getSd(), table.getSd(), table - .getParameters(), table.getTableName(), table.getPartitionKeys()); + .getParameters(), table.getDbName(), table.getTableName(), table.getPartitionKeys()); } public static Properties getSchema( org.apache.hadoop.hive.metastore.api.StorageDescriptor sd, org.apache.hadoop.hive.metastore.api.StorageDescriptor tblsd, - Map parameters, String tableName, + Map parameters, String databaseName, String tableName, List partitionKeys) { Properties schema = new Properties(); String inputFormat = sd.getInputFormat(); @@ -487,9 +487,11 @@ schema.setProperty( org.apache.hadoop.hive.metastore.api.Constants.FILE_OUTPUT_FORMAT, outputFormat); + schema.setProperty( org.apache.hadoop.hive.metastore.api.Constants.META_TABLE_NAME, - tableName); + databaseName + "." + tableName); + if (sd.getLocation() != null) { schema.setProperty( org.apache.hadoop.hive.metastore.api.Constants.META_TABLE_LOCATION, Index: serde/src/java/org/apache/hadoop/hive/serde2/dynamic_type/DynamicSerDe.java =================================================================== --- serde/src/java/org/apache/hadoop/hive/serde2/dynamic_type/DynamicSerDe.java (revision 1068243) +++ serde/src/java/org/apache/hadoop/hive/serde2/dynamic_type/DynamicSerDe.java (working copy) @@ -76,7 +76,17 @@ try { String ddl = tbl.getProperty(Constants.SERIALIZATION_DDL); - type_name = tbl.getProperty(META_TABLE_NAME); + // type_name used to be tbl.getProperty(META_TABLE_NAME). + // However, now the value is DBName.TableName. To make it backward compatible, + // we take the TableName part as type_name. + // + String tableName = tbl.getProperty(META_TABLE_NAME); + int index = tableName.indexOf('.'); + if (index != -1) { + type_name = tableName.substring(index + 1, tableName.length()); + } else { + type_name = tableName; + } String protoName = tbl.getProperty(Constants.SERIALIZATION_FORMAT); if (protoName == null) { Index: ql/src/test/results/clientpositive/groupby3_noskew_multi_distinct.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby3_noskew_multi_distinct.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby3_noskew_multi_distinct.q.out (working copy) @@ -133,7 +133,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -143,7 +143,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -195,11 +195,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/amarsri/hive_2010-10-20_02-58-11_371_9192473715365716502/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-09-40_404_9020964672918000900/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/amarsri/hive_2010-10-20_02-58-11_371_9192473715365716502/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-09-40_404_9020964672918000900/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src.null, ] POSTHOOK: Lineage: dest1.c10 EXPRESSION [(src)src.null, ] POSTHOOK: Lineage: dest1.c11 EXPRESSION [(src)src.null, ] Index: ql/src/test/results/clientpositive/merge4.q.out =================================================================== --- ql/src/test/results/clientpositive/merge4.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/merge4.q.out (working copy) @@ -47,7 +47,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part + name: default.nzhang_part Stage: Stage-5 Conditional Operator @@ -56,7 +56,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-42-45_598_664322384125179870/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-29_012_2149386581903290038/-ext-10000 Stage: Stage-0 Move Operator @@ -69,7 +69,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part + name: default.nzhang_part Stage: Stage-2 Stats-Aggr Operator @@ -77,7 +77,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-42-45_598_664322384125179870/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-29_012_2149386581903290038/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -85,7 +85,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part + name: default.nzhang_part PREHOOK: query: insert overwrite table nzhang_part partition (ds='2010-08-15', hr) select key, value, hr from srcpart where ds='2008-04-08' @@ -107,11 +107,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@nzhang_part@ds=2010-08-15/hr=11 PREHOOK: Input: default@nzhang_part@ds=2010-08-15/hr=12 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-10_21-42-59_458_523212255193350255/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-07-34_973_1006444746251911470/-mr-10000 POSTHOOK: query: select * from nzhang_part POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_part@ds=2010-08-15/hr=11 POSTHOOK: Input: default@nzhang_part@ds=2010-08-15/hr=12 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-07-34_973_1006444746251911470/-mr-10000 POSTHOOK: Lineage: nzhang_part PARTITION(ds=2010-08-15,hr=11).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part PARTITION(ds=2010-08-15,hr=11).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part PARTITION(ds=2010-08-15,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] @@ -1162,7 +1163,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part + name: default.nzhang_part Stage: Stage-5 Conditional Operator @@ -1171,7 +1172,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-43-00_160_6210397902575365347/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-35_563_3977910166486964665/-ext-10000 Stage: Stage-0 Move Operator @@ -1184,7 +1185,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part + name: default.nzhang_part Stage: Stage-2 Stats-Aggr Operator @@ -1192,7 +1193,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-43-00_160_6210397902575365347/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-35_563_3977910166486964665/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -1200,7 +1201,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part + name: default.nzhang_part PREHOOK: query: insert overwrite table nzhang_part partition (ds='2010-08-15', hr=11) select key, value from srcpart where ds='2008-04-08' @@ -1223,11 +1224,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@nzhang_part@ds=2010-08-15/hr=11 PREHOOK: Input: default@nzhang_part@ds=2010-08-15/hr=12 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-10_21-43-11_115_1003991296778317216/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-07-43_878_3883266191072181297/-mr-10000 POSTHOOK: query: select * from nzhang_part POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_part@ds=2010-08-15/hr=11 POSTHOOK: Input: default@nzhang_part@ds=2010-08-15/hr=12 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-07-43_878_3883266191072181297/-mr-10000 POSTHOOK: Lineage: nzhang_part PARTITION(ds=2010-08-15,hr=11).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part PARTITION(ds=2010-08-15,hr=11).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part PARTITION(ds=2010-08-15,hr=11).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] @@ -2797,7 +2799,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/njain/hive_2010-11-10_21-43-12_061_4308593628015089245/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_03-07-44_480_3380413648984458326/-mr-10002 Union Select Operator expressions: @@ -2815,8 +2817,8 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part - file:/tmp/njain/hive_2010-11-10_21-43-12_061_4308593628015089245/-mr-10004 + name: default.nzhang_part + file:/tmp/sdong/hive_2011-02-09_03-07-44_480_3380413648984458326/-mr-10004 Union Select Operator expressions: @@ -2834,7 +2836,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part + name: default.nzhang_part Stage: Stage-6 Conditional Operator @@ -2843,7 +2845,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-43-12_061_4308593628015089245/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-44_480_3380413648984458326/-ext-10000 Stage: Stage-0 Move Operator @@ -2856,7 +2858,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part + name: default.nzhang_part Stage: Stage-3 Stats-Aggr Operator @@ -2864,7 +2866,7 @@ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-43-12_061_4308593628015089245/-ext-10003 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-44_480_3380413648984458326/-ext-10003 File Output Operator compressed: false GlobalTableId: 0 @@ -2872,7 +2874,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part + name: default.nzhang_part Stage: Stage-7 Map Reduce @@ -2967,10 +2969,11 @@ PREHOOK: query: select * from nzhang_part where hr = 'file,' PREHOOK: type: QUERY PREHOOK: Input: default@nzhang_part@ds=2010-08-15/hr=file, -PREHOOK: Output: file:/tmp/njain/hive_2010-11-10_21-43-36_851_2285015947672308698/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-07-58_644_9206441867897878878/-mr-10000 POSTHOOK: query: select * from nzhang_part where hr = 'file,' POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_part@ds=2010-08-15/hr=file, +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-07-58_644_9206441867897878878/-mr-10000 POSTHOOK: Lineage: nzhang_part PARTITION(ds=2010-08-15,hr=11).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part PARTITION(ds=2010-08-15,hr=11).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part PARTITION(ds=2010-08-15,hr=11).key EXPRESSION [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/join6.q.out =================================================================== --- ql/src/test/results/clientpositive/join6.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join6.q.out (working copy) @@ -158,7 +158,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -168,7 +168,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -213,11 +213,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-43-50_077_9159182815856110050/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-34-31_763_7704388685838110164/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-43-50_077_9159182815856110050/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-34-31_763_7704388685838110164/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c2 SIMPLE [(src)src1.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c3 EXPRESSION [(src)src2.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/union19.q.out =================================================================== --- ql/src/test/results/clientpositive/union19.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/union19.q.out (working copy) @@ -82,7 +82,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_18-19-07_762_5076204664112453958/-mr-10004 + file:/tmp/sdong/hive_2011-02-09_04-16-40_515_8208453115190295761/-mr-10004 Union Select Operator expressions: @@ -128,8 +128,8 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 - file:/tmp/nzhang/hive_2010-09-14_18-19-07_762_5076204664112453958/-mr-10005 + name: default.dest2 + file:/tmp/sdong/hive_2011-02-09_04-16-40_515_8208453115190295761/-mr-10005 Union Select Operator expressions: @@ -175,7 +175,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Reduce Operator Tree: Group By Operator aggregations: @@ -200,7 +200,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -210,7 +210,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-4 Stats-Aggr Operator @@ -223,7 +223,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-5 Stats-Aggr Operator @@ -275,11 +275,11 @@ PREHOOK: query: SELECT DEST1.* FROM DEST1 SORT BY DEST1.key, DEST1.value PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-19-23_211_5795126073345644412/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-16-52_245_7645481741045550387/-mr-10000 POSTHOOK: query: SELECT DEST1.* FROM DEST1 SORT BY DEST1.key, DEST1.value POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-19-23_211_5795126073345644412/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-16-52_245_7645481741045550387/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)s2.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)s1.null, (src)s2.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)s2.FieldSchema(name:key, type:string, comment:default), ] @@ -598,11 +598,11 @@ PREHOOK: query: SELECT DEST2.* FROM DEST2 SORT BY DEST2.key, DEST2.val1, DEST2.val2 PREHOOK: type: QUERY PREHOOK: Input: default@dest2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-19-26_789_6983596924823083129/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-16-55_667_7757584296869809847/-mr-10000 POSTHOOK: query: SELECT DEST2.* FROM DEST2 SORT BY DEST2.key, DEST2.val1, DEST2.val2 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-19-26_789_6983596924823083129/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-16-55_667_7757584296869809847/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)s2.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)s1.null, (src)s2.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)s2.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/input32.q.out =================================================================== --- ql/src/test/results/clientpositive/input32.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input32.q.out (working copy) @@ -68,7 +68,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tst_dest32 + name: default.tst_dest32 Stage: Stage-0 Move Operator @@ -78,7 +78,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tst_dest32 + name: default.tst_dest32 Stage: Stage-2 Stats-Aggr Operator @@ -98,10 +98,10 @@ PREHOOK: query: select * from tst_dest32 PREHOOK: type: QUERY PREHOOK: Input: default@tst_dest32 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-29-34_990_3499360845984372062/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-22-11_322_8224307404791001715/-mr-10000 POSTHOOK: query: select * from tst_dest32 POSTHOOK: type: QUERY POSTHOOK: Input: default@tst_dest32 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-29-34_990_3499360845984372062/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-22-11_322_8224307404791001715/-mr-10000 POSTHOOK: Lineage: tst_dest32.a EXPRESSION [(srcbucket)srcbucket.null, ] 1000 Index: ql/src/test/results/clientpositive/auto_join3.q.out =================================================================== --- ql/src/test/results/clientpositive/auto_join3.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/auto_join3.q.out (working copy) @@ -111,7 +111,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Local Work: Map Reduce Local Work @@ -123,7 +123,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -209,7 +209,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Local Work: Map Reduce Local Work @@ -294,7 +294,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Local Work: Map Reduce Local Work @@ -375,7 +375,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM src src1 JOIN src src2 ON (src1.key = src2.key) JOIN src src3 ON (src1.key = src3.key) @@ -393,11 +393,11 @@ PREHOOK: query: SELECT sum(hash(dest1.key,dest1.value)) FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-15_16-49-44_524_1112752922854683245/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-30-38_365_7150843678245117745/-mr-10000 POSTHOOK: query: SELECT sum(hash(dest1.key,dest1.value)) FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-15_16-49-44_524_1112752922854683245/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-30-38_365_7150843678245117745/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SIMPLE [(src)src3.FieldSchema(name:value, type:string, comment:default), ] 344360994461 Index: ql/src/test/results/clientpositive/union4.q.out =================================================================== --- ql/src/test/results/clientpositive/union4.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/union4.q.out (working copy) @@ -78,7 +78,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_18-21-17_342_7247960984302090021/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_04-18-24_675_8311587081515194904/-mr-10002 Union Select Operator expressions: @@ -101,8 +101,8 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable - file:/tmp/nzhang/hive_2010-09-14_18-21-17_342_7247960984302090021/-mr-10004 + name: default.tmptable + file:/tmp/sdong/hive_2011-02-09_04-18-24_675_8311587081515194904/-mr-10004 Union Select Operator expressions: @@ -125,7 +125,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable + name: default.tmptable Stage: Stage-6 Conditional Operator @@ -134,7 +134,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_18-21-17_342_7247960984302090021/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_04-18-24_675_8311587081515194904/-ext-10000 Stage: Stage-0 Move Operator @@ -144,7 +144,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable + name: default.tmptable Stage: Stage-3 Stats-Aggr Operator @@ -152,7 +152,7 @@ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_18-21-17_342_7247960984302090021/-ext-10003 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_04-18-24_675_8311587081515194904/-ext-10003 File Output Operator compressed: false GlobalTableId: 0 @@ -160,7 +160,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable + name: default.tmptable Stage: Stage-7 Map Reduce @@ -222,11 +222,11 @@ PREHOOK: query: select * from tmptable x sort by x.key PREHOOK: type: QUERY PREHOOK: Input: default@tmptable -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-21-35_055_5141984508295950666/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-18-36_442_7110740614450402835/-mr-10000 POSTHOOK: query: select * from tmptable x sort by x.key POSTHOOK: type: QUERY POSTHOOK: Input: default@tmptable -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-21-35_055_5141984508295950666/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-18-36_442_7110740614450402835/-mr-10000 POSTHOOK: Lineage: tmptable.key EXPRESSION [] POSTHOOK: Lineage: tmptable.value EXPRESSION [(src)s1.null, (src)s2.null, ] tst1 500 Index: ql/src/test/results/clientpositive/groupby9.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby9.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby9.q.out (working copy) @@ -89,7 +89,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-19-55_657_8040013815774414670/-mr-10004 + file:/tmp/sdong/hive_2011-02-09_02-13-31_598_6378471133980531944/-mr-10004 Reduce Output Operator key expressions: expr: _col0 @@ -133,7 +133,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -143,7 +143,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-4 Stats-Aggr Operator @@ -151,7 +151,7 @@ Stage: Stage-5 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-19-55_657_8040013815774414670/-mr-10005 + file:/tmp/sdong/hive_2011-02-09_02-13-31_598_6378471133980531944/-mr-10005 Reduce Output Operator key expressions: expr: _col0 @@ -205,7 +205,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-1 Move Operator @@ -215,7 +215,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-6 Stats-Aggr Operator @@ -243,11 +243,11 @@ PREHOOK: query: SELECT DEST1.* FROM DEST1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-20-12_444_3597512065913999700/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-13-44_077_8305323865167102915/-mr-10000 POSTHOOK: query: SELECT DEST1.* FROM DEST1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-20-12_444_3597512065913999700/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-13-44_077_8305323865167102915/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -565,11 +565,11 @@ PREHOOK: query: SELECT DEST2.* FROM DEST2 PREHOOK: type: QUERY PREHOOK: Input: default@dest2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-20-12_904_392417491226802946/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-13-44_376_7990659371245970685/-mr-10000 POSTHOOK: query: SELECT DEST2.* FROM DEST2 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-20-12_904_392417491226802946/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-13-44_376_7990659371245970685/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/groupby_ppr.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby_ppr.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby_ppr.q.out (working copy) @@ -58,10 +58,10 @@ tag: -1 Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [src] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [src] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -75,13 +75,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -92,17 +92,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -116,13 +116,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -133,16 +133,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Group By Operator aggregations: @@ -175,9 +175,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-23-10_851_7413855399951911296/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-14-38_542_1227734387346936381/-ext-10000 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-23-10_851_7413855399951911296/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-14-38_542_1227734387346936381/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -187,14 +187,14 @@ columns.types string:int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { string key, i32 c1, string c2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288390990 + transient_lastDdlTime 1297246478 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -203,7 +203,7 @@ Move Operator tables: replace: true - source: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-23-10_851_7413855399951911296/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-14-38_542_1227734387346936381/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -213,19 +213,19 @@ columns.types string:int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { string key, i32 c1, string c2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288390990 + transient_lastDdlTime 1297246478 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - tmp directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-23-10_851_7413855399951911296/-ext-10001 + name: default.dest1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-14-38_542_1227734387346936381/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-23-10_851_7413855399951911296/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-14-38_542_1227734387346936381/-ext-10000/ PREHOOK: query: FROM srcpart src @@ -252,11 +252,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/sdong/hive_2010-10-29_15-23-17_064_1243511198506003429/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-14-45_198_637783124112898683/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/sdong/hive_2010-10-29_15-23-17_064_1243511198506003429/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-14-45_198_637783124112898683/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(srcpart)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c2 EXPRESSION [(srcpart)src.FieldSchema(name:key, type:string, comment:default), (srcpart)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.key EXPRESSION [(srcpart)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/sample8.q.out =================================================================== --- ql/src/test/results/clientpositive/sample8.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/sample8.q.out (working copy) @@ -78,12 +78,12 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [t, s] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [t] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [t] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [t] + 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] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -97,13 +97,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297250836 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -114,17 +114,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297250836 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -138,13 +138,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297250836 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -155,17 +155,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297250836 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + 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 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -179,13 +179,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297250836 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -196,17 +196,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297250836 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -220,13 +220,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297250836 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -237,16 +237,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297250836 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Join Operator condition map: @@ -275,7 +275,7 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-10-29_16-26-43_354_7734151423956004275/-mr-10002 + directory: file:/tmp/sdong/hive_2011-02-09_03-28-44_664_8846922032043071421/-mr-10002 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -291,7 +291,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/sdong/hive_2010-10-29_16-26-43_354_7734151423956004275/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_03-28-44_664_8846922032043071421/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -316,9 +316,9 @@ type: string Needs Tagging: false Path -> Alias: - file:/tmp/sdong/hive_2010-10-29_16-26-43_354_7734151423956004275/-mr-10002 [file:/tmp/sdong/hive_2010-10-29_16-26-43_354_7734151423956004275/-mr-10002] + file:/tmp/sdong/hive_2011-02-09_03-28-44_664_8846922032043071421/-mr-10002 [file:/tmp/sdong/hive_2011-02-09_03-28-44_664_8846922032043071421/-mr-10002] Path -> Partition: - file:/tmp/sdong/hive_2010-10-29_16-26-43_354_7734151423956004275/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_03-28-44_664_8846922032043071421/-mr-10002 Partition base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -339,9 +339,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-10-29_16-26-43_354_7734151423956004275/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-28-44_664_8846922032043071421/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-10-29_16-26-43_354_7734151423956004275/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-28-44_664_8846922032043071421/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -369,7 +369,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_2010-10-29_16-26-43_553_775220357959319272/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-45_185_3643958651614489738/-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 @@ -381,7 +381,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_2010-10-29_16-26-43_553_775220357959319272/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-45_185_3643958651614489738/-mr-10000 0 val_0 0 val_0 0 val_0 Index: ql/src/test/results/clientpositive/join29.q.out =================================================================== --- ql/src/test/results/clientpositive/join29.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join29.q.out (working copy) @@ -89,11 +89,11 @@ Stage: Stage-9 Map Reduce Local Work Alias -> Map Local Tables: - file:/tmp/liyintang/hive_2010-11-04_12-10-25_127_7262353630093457446/-mr-10004 + file:/tmp/sdong/hive_2011-02-09_02-30-23_105_1644776807971194419/-mr-10004 Fetch Operator limit: -1 Alias -> Map Local Operator Tree: - file:/tmp/liyintang/hive_2010-11-04_12-10-25_127_7262353630093457446/-mr-10004 + file:/tmp/sdong/hive_2011-02-09_02-30-23_105_1644776807971194419/-mr-10004 HashTable Sink Operator condition expressions: 0 {_col0} {_col1} @@ -107,7 +107,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/liyintang/hive_2010-11-04_12-10-25_127_7262353630093457446/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-30-23_105_1644776807971194419/-mr-10002 Map Join Operator condition map: Inner Join 0 to 1 @@ -154,7 +154,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Local Work: Map Reduce Local Work @@ -165,7 +165,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-10-25_127_7262353630093457446/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-30-23_105_1644776807971194419/-ext-10000 Stage: Stage-0 Move Operator @@ -175,7 +175,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Stage: Stage-3 Stats-Aggr Operator @@ -183,7 +183,7 @@ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-10-25_127_7262353630093457446/-ext-10003 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-30-23_105_1644776807971194419/-ext-10003 File Output Operator compressed: false GlobalTableId: 0 @@ -191,7 +191,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Stage: Stage-7 Map Reduce @@ -272,11 +272,11 @@ PREHOOK: query: select * from dest_j1 x order by x.key PREHOOK: type: QUERY PREHOOK: Input: default@dest_j1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_12-10-42_703_1867902746100829562/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-30-36_613_5170340193549408556/-mr-10000 POSTHOOK: query: select * from dest_j1 x order by x.key POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_j1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_12-10-42_703_1867902746100829562/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-30-36_613_5170340193549408556/-mr-10000 POSTHOOK: Lineage: dest_j1.cnt1 EXPRESSION [(src1)x.null, ] POSTHOOK: Lineage: dest_j1.cnt2 EXPRESSION [(src)y.null, ] POSTHOOK: Lineage: dest_j1.key SIMPLE [(src1)x.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/transform_ppr2.q.out =================================================================== --- ql/src/test/results/clientpositive/transform_ppr2.q.out (revision 1068243) +++ 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/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [tmap:src] - pfile:/data/users/sdong/www/hive-trunk/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-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] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297250836 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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297250836 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297250836 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -150,16 +150,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297250836 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Extract Filter Operator @@ -177,9 +177,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-10-29_16-49-00_753_64980182722766710/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-50-13_211_29230195077402437/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-10-29_16-49-00_753_64980182722766710/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-50-13_211_29230195077402437/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -207,7 +207,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_2010-10-29_16-49-00_883_5539618246289966796/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-50-13_349_581741183593886769/-mr-10000 POSTHOOK: query: FROM ( FROM srcpart src SELECT TRANSFORM(src.ds, src.key, src.value) @@ -219,7 +219,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_2010-10-29_16-49-00_883_5539618246289966796/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-50-13_349_581741183593886769/-mr-10000 0 val_0 0 val_0 0 val_0 Index: ql/src/test/results/clientpositive/notable_alias1.q.out =================================================================== --- ql/src/test/results/clientpositive/notable_alias1.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/notable_alias1.q.out (working copy) @@ -95,7 +95,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -105,7 +105,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -127,11 +127,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-10-42_121_5828123472930756203/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-11-56_736_1244276316673751378/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-10-42_121_5828123472930756203/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-11-56_736_1244276316673751378/-mr-10000 POSTHOOK: Lineage: dest1.dummy SIMPLE [] POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.null, ] Index: ql/src/test/results/clientpositive/load_dyn_part13.q.out =================================================================== --- ql/src/test/results/clientpositive/load_dyn_part13.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/load_dyn_part13.q.out (working copy) @@ -20,7 +20,7 @@ ds string hr string -Detailed Table Information Table(tableName:nzhang_part13, dbName:default, owner:null, createTime:1289453271, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/nzhang_part13, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{transient_lastDdlTime=1289453271}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:nzhang_part13, dbName:default, owner:null, createTime:1297248951, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_part13, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{transient_lastDdlTime=1297248951}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) PREHOOK: query: explain insert overwrite table nzhang_part13 partition (ds="2010-03-03", hr) select * from ( @@ -92,7 +92,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part13 + name: default.nzhang_part13 null-subquery2:s-subquery2:src TableScan alias: src @@ -130,7 +130,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part13 + name: default.nzhang_part13 Stage: Stage-0 Move Operator @@ -143,7 +143,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part13 + name: default.nzhang_part13 Stage: Stage-2 Stats-Aggr Operator @@ -192,11 +192,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@nzhang_part13@ds=2010-03-03/hr=22 PREHOOK: Input: default@nzhang_part13@ds=2010-03-03/hr=33 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-10_21-28-04_222_1253169937473713651/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-55-57_314_6148293324036731964/-mr-10000 POSTHOOK: query: select * from nzhang_part13 where ds is not null and hr is not null POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_part13@ds=2010-03-03/hr=22 POSTHOOK: Input: default@nzhang_part13@ds=2010-03-03/hr=33 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-55-57_314_6148293324036731964/-mr-10000 POSTHOOK: Lineage: nzhang_part13 PARTITION(ds=2010-03-03,hr=22).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part13 PARTITION(ds=2010-03-03,hr=22).value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part13 PARTITION(ds=2010-03-03,hr=33).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/input6.q.out =================================================================== --- ql/src/test/results/clientpositive/input6.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input6.q.out (working copy) @@ -51,7 +51,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Conditional Operator @@ -60,7 +60,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-32-22_961_7505255459402308117/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-24-33_267_1867143919911730868/-ext-10000 Stage: Stage-0 Move Operator @@ -70,7 +70,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -78,7 +78,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-32-22_961_7505255459402308117/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-24-33_267_1867143919911730868/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -86,7 +86,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM src1 @@ -104,10 +104,10 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-32-28_717_6428564753345154099/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-24-38_081_131704341462191766/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-32-28_717_6428564753345154099/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-24-38_081_131704341462191766/-mr-10000 POSTHOOK: Lineage: dest1.key SIMPLE [(src1)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SIMPLE [(src1)src1.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/stats8.q.out =================================================================== --- ql/src/test/results/clientpositive/stats8.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/stats8.q.out (working copy) @@ -41,7 +41,7 @@ POSTHOOK: Lineage: analyze_srcpart PARTITION(ds=2008-04-09,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: analyze_srcpart PARTITION(ds=2008-04-09,hr=12).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] ABSTRACT SYNTAX TREE: - (TOK_ANALYZE (TOK_TABTYPE analyze_srcpart (TOK_PARTSPEC (TOK_PARTVAL ds '2008-04-08') (TOK_PARTVAL hr 11)))) + (TOK_ANALYZE (TOK_TAB analyze_srcpart (TOK_PARTSPEC (TOK_PARTVAL ds '2008-04-08') (TOK_PARTVAL hr 11)))) STAGE DEPENDENCIES: Stage-0 is a root stage @@ -94,7 +94,7 @@ ds string hr string -Detailed Partition Information Partition(values:[2008-04-08, 11], dbName:default, tableName:analyze_srcpart, createTime:1290146797, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=11, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1290146810, numRows=500, totalSize=5812}) +Detailed Partition Information Partition(values:[2008-04-08, 11], dbName:default, tableName:analyze_srcpart, createTime:1297252100, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=11, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1297252106, numRows=500, totalSize=5812}) PREHOOK: query: describe extended analyze_srcpart PREHOOK: type: DESCTABLE POSTHOOK: query: describe extended analyze_srcpart @@ -112,7 +112,7 @@ ds string hr string -Detailed Table Information Table(tableName:analyze_srcpart, dbName:default, owner:null, createTime:1290146774, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{numPartitions=1, numFiles=1, transient_lastDdlTime=1290146810, numRows=500, totalSize=5812}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:analyze_srcpart, dbName:default, owner:null, createTime:1297252095, lastAccessTime:1297250836, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{numPartitions=1, numFiles=1, transient_lastDdlTime=1297252106, numRows=500, totalSize=5812}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) PREHOOK: query: explain analyze table analyze_srcpart PARTITION(ds='2008-04-08',hr=12) compute statistics PREHOOK: type: QUERY POSTHOOK: query: explain analyze table analyze_srcpart PARTITION(ds='2008-04-08',hr=12) compute statistics @@ -126,7 +126,7 @@ POSTHOOK: Lineage: analyze_srcpart PARTITION(ds=2008-04-09,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: analyze_srcpart PARTITION(ds=2008-04-09,hr=12).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] ABSTRACT SYNTAX TREE: - (TOK_ANALYZE (TOK_TABTYPE analyze_srcpart (TOK_PARTSPEC (TOK_PARTVAL ds '2008-04-08') (TOK_PARTVAL hr 12)))) + (TOK_ANALYZE (TOK_TAB analyze_srcpart (TOK_PARTSPEC (TOK_PARTVAL ds '2008-04-08') (TOK_PARTVAL hr 12)))) STAGE DEPENDENCIES: Stage-0 is a root stage @@ -179,7 +179,7 @@ ds string hr string -Detailed Partition Information Partition(values:[2008-04-08, 12], dbName:default, tableName:analyze_srcpart, createTime:1290146799, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=12, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1290146820, numRows=500, totalSize=5812}) +Detailed Partition Information Partition(values:[2008-04-08, 12], dbName:default, tableName:analyze_srcpart, createTime:1297252101, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=12, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1297252111, numRows=500, totalSize=5812}) PREHOOK: query: explain analyze table analyze_srcpart PARTITION(ds='2008-04-09',hr=11) compute statistics PREHOOK: type: QUERY POSTHOOK: query: explain analyze table analyze_srcpart PARTITION(ds='2008-04-09',hr=11) compute statistics @@ -193,7 +193,7 @@ POSTHOOK: Lineage: analyze_srcpart PARTITION(ds=2008-04-09,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: analyze_srcpart PARTITION(ds=2008-04-09,hr=12).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] ABSTRACT SYNTAX TREE: - (TOK_ANALYZE (TOK_TABTYPE analyze_srcpart (TOK_PARTSPEC (TOK_PARTVAL ds '2008-04-09') (TOK_PARTVAL hr 11)))) + (TOK_ANALYZE (TOK_TAB analyze_srcpart (TOK_PARTSPEC (TOK_PARTVAL ds '2008-04-09') (TOK_PARTVAL hr 11)))) STAGE DEPENDENCIES: Stage-0 is a root stage @@ -246,7 +246,7 @@ ds string hr string -Detailed Partition Information Partition(values:[2008-04-09, 11], dbName:default, tableName:analyze_srcpart, createTime:1290146799, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-09/hr=11, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1290146830, numRows=500, totalSize=5812}) +Detailed Partition Information Partition(values:[2008-04-09, 11], dbName:default, tableName:analyze_srcpart, createTime:1297252101, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-09/hr=11, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1297252115, numRows=500, totalSize=5812}) PREHOOK: query: explain analyze table analyze_srcpart PARTITION(ds='2008-04-09',hr=12) compute statistics PREHOOK: type: QUERY POSTHOOK: query: explain analyze table analyze_srcpart PARTITION(ds='2008-04-09',hr=12) compute statistics @@ -260,7 +260,7 @@ POSTHOOK: Lineage: analyze_srcpart PARTITION(ds=2008-04-09,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: analyze_srcpart PARTITION(ds=2008-04-09,hr=12).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] ABSTRACT SYNTAX TREE: - (TOK_ANALYZE (TOK_TABTYPE analyze_srcpart (TOK_PARTSPEC (TOK_PARTVAL ds '2008-04-09') (TOK_PARTVAL hr 12)))) + (TOK_ANALYZE (TOK_TAB analyze_srcpart (TOK_PARTSPEC (TOK_PARTVAL ds '2008-04-09') (TOK_PARTVAL hr 12)))) STAGE DEPENDENCIES: Stage-0 is a root stage @@ -313,7 +313,7 @@ ds string hr string -Detailed Partition Information Partition(values:[2008-04-09, 12], dbName:default, tableName:analyze_srcpart, createTime:1290146800, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-09/hr=12, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1290146842, numRows=500, totalSize=5812}) +Detailed Partition Information Partition(values:[2008-04-09, 12], dbName:default, tableName:analyze_srcpart, createTime:1297252101, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-09/hr=12, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1297252120, numRows=500, totalSize=5812}) PREHOOK: query: explain analyze table analyze_srcpart PARTITION(ds, hr) compute statistics PREHOOK: type: QUERY POSTHOOK: query: explain analyze table analyze_srcpart PARTITION(ds, hr) compute statistics @@ -327,7 +327,7 @@ POSTHOOK: Lineage: analyze_srcpart PARTITION(ds=2008-04-09,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: analyze_srcpart PARTITION(ds=2008-04-09,hr=12).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] ABSTRACT SYNTAX TREE: - (TOK_ANALYZE (TOK_TABTYPE analyze_srcpart (TOK_PARTSPEC (TOK_PARTVAL ds) (TOK_PARTVAL hr)))) + (TOK_ANALYZE (TOK_TAB analyze_srcpart (TOK_PARTSPEC (TOK_PARTVAL ds) (TOK_PARTVAL hr)))) STAGE DEPENDENCIES: Stage-0 is a root stage @@ -392,7 +392,7 @@ ds string hr string -Detailed Partition Information Partition(values:[2008-04-08, 11], dbName:default, tableName:analyze_srcpart, createTime:1290146797, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=11, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1290146854, numRows=500, totalSize=5812}) +Detailed Partition Information Partition(values:[2008-04-08, 11], dbName:default, tableName:analyze_srcpart, createTime:1297252100, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=11, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1297252125, totalSize=5812, numRows=0}) PREHOOK: query: describe extended analyze_srcpart PARTITION(ds='2008-04-08',hr=12) PREHOOK: type: DESCTABLE POSTHOOK: query: describe extended analyze_srcpart PARTITION(ds='2008-04-08',hr=12) @@ -410,7 +410,7 @@ ds string hr string -Detailed Partition Information Partition(values:[2008-04-08, 12], dbName:default, tableName:analyze_srcpart, createTime:1290146799, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=12, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1290146854, numRows=500, totalSize=5812}) +Detailed Partition Information Partition(values:[2008-04-08, 12], dbName:default, tableName:analyze_srcpart, createTime:1297252101, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=12, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1297252125, totalSize=5812, numRows=0}) PREHOOK: query: describe extended analyze_srcpart PARTITION(ds='2008-04-09',hr=11) PREHOOK: type: DESCTABLE POSTHOOK: query: describe extended analyze_srcpart PARTITION(ds='2008-04-09',hr=11) @@ -428,7 +428,7 @@ ds string hr string -Detailed Partition Information Partition(values:[2008-04-09, 11], dbName:default, tableName:analyze_srcpart, createTime:1290146799, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-09/hr=11, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1290146854, numRows=500, totalSize=5812}) +Detailed Partition Information Partition(values:[2008-04-09, 11], dbName:default, tableName:analyze_srcpart, createTime:1297252101, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-09/hr=11, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1297252125, totalSize=5812, numRows=0}) PREHOOK: query: describe extended analyze_srcpart PARTITION(ds='2008-04-09',hr=12) PREHOOK: type: DESCTABLE POSTHOOK: query: describe extended analyze_srcpart PARTITION(ds='2008-04-09',hr=12) @@ -446,7 +446,7 @@ ds string hr string -Detailed Partition Information Partition(values:[2008-04-09, 12], dbName:default, tableName:analyze_srcpart, createTime:1290146800, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-09/hr=12, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1290146854, numRows=500, totalSize=5812}) +Detailed Partition Information Partition(values:[2008-04-09, 12], dbName:default, tableName:analyze_srcpart, createTime:1297252101, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-09/hr=12, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1297252125, numRows=500, totalSize=5812}) PREHOOK: query: describe extended analyze_srcpart PREHOOK: type: DESCTABLE POSTHOOK: query: describe extended analyze_srcpart @@ -464,4 +464,4 @@ ds string hr string -Detailed Table Information Table(tableName:analyze_srcpart, dbName:default, owner:null, createTime:1290146774, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{numPartitions=4, numFiles=4, transient_lastDdlTime=1290146854, numRows=2000, totalSize=23248}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:analyze_srcpart, dbName:default, owner:null, createTime:1297252095, lastAccessTime:1297250836, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{numPartitions=4, numFiles=4, transient_lastDdlTime=1297252125, numRows=500, totalSize=23248}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) Index: ql/src/test/results/clientpositive/union_ppr.q.out =================================================================== --- ql/src/test/results/clientpositive/union_ppr.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/union_ppr.q.out (working copy) @@ -155,10 +155,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/njain/hive_commit1/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/njain/hive_commit1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [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=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] Path -> Partition: - pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -172,13 +172,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/njain/hive_commit1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296761475 + transient_lastDdlTime 1297250836 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -189,17 +189,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/njain/hive_commit1/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296761475 + transient_lastDdlTime 1297250836 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -213,13 +213,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/njain/hive_commit1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296761475 + transient_lastDdlTime 1297250836 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -230,24 +230,24 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296761475 + transient_lastDdlTime 1297250836 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/njain/hive_2011-02-03_11-31-24_107_7646141366411001923/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_04-19-25_576_3606878177117136595/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/njain/hive_2011-02-03_11-31-24_107_7646141366411001923/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_04-19-25_576_3606878177117136595/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -274,7 +274,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/njain/hive_2011-02-03_11-31-24_506_7808326810869045824/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-19-25_738_8631761537316895706/-mr-10000 POSTHOOK: query: SELECT * FROM ( SELECT X.* FROM SRCPART X WHERE X.key < 100 UNION ALL @@ -285,7 +285,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/njain/hive_2011-02-03_11-31-24_506_7808326810869045824/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-19-25_738_8631761537316895706/-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/groupby4.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby4.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby4.q.out (working copy) @@ -59,7 +59,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-15-29_592_716698340137236338/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-09-41_035_6603811602462986487/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -89,7 +89,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -99,7 +99,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-3 Stats-Aggr Operator @@ -119,11 +119,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-15-39_750_3083045586040754583/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-09-48_891_561471273268006595/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-15-39_750_3083045586040754583/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-09-48_891_561471273268006595/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] 0 1 Index: ql/src/test/results/clientpositive/input_part7.q.out =================================================================== --- ql/src/test/results/clientpositive/input_part7.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input_part7.q.out (working copy) @@ -143,10 +143,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/njain/hive_commit1/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/njain/hive_commit1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [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=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] Path -> Partition: - pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -160,13 +160,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/njain/hive_commit1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296760001 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -177,17 +177,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/njain/hive_commit1/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296760001 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -201,13 +201,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/njain/hive_commit1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296760001 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -218,24 +218,24 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296760001 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/njain/hive_2011-02-03_11-06-52_255_8150535869499892719/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_02-26-21_108_6925597856622454977/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/njain/hive_2011-02-03_11-06-52_255_8150535869499892719/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_02-26-21_108_6925597856622454977/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -261,7 +261,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/njain/hive_2011-02-03_11-06-52_647_4598400577694048071/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-26-21_266_1936792720424082366/-mr-10000 POSTHOOK: query: SELECT * FROM ( SELECT X.* FROM SRCPART X WHERE X.ds = '2008-04-08' and X.key < 100 UNION ALL @@ -271,7 +271,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/njain/hive_2011-02-03_11-06-52_647_4598400577694048071/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-26-21_266_1936792720424082366/-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/bucketmapjoin5.q.out =================================================================== --- ql/src/test/results/clientpositive/bucketmapjoin5.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/bucketmapjoin5.q.out (working copy) @@ -147,16 +147,16 @@ Alias Bucket Base File Name Mapping: a {srcbucket20.txt=[srcbucket20.txt], srcbucket21.txt=[srcbucket21.txt], srcbucket22.txt=[srcbucket20.txt], srcbucket23.txt=[srcbucket21.txt], ds=2008-04-09/srcbucket20.txt=[srcbucket20.txt], ds=2008-04-09/srcbucket21.txt=[srcbucket21.txt], ds=2008-04-09/srcbucket22.txt=[srcbucket20.txt], ds=2008-04-09/srcbucket23.txt=[srcbucket21.txt]} Alias Bucket File Name Mapping: - a {pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket20.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket21.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket22.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket23.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-09/srcbucket20.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-09/srcbucket21.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-09/srcbucket22.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-09/srcbucket23.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt]} + a {pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket20.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket21.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket22.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket23.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-09/srcbucket20.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-09/srcbucket21.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-09/srcbucket22.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-09/srcbucket23.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt]} Alias Bucket Output File Name Mapping: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket20.txt 0 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket21.txt 1 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket22.txt 2 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket23.txt 3 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-09/srcbucket20.txt 0 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-09/srcbucket21.txt 1 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-09/srcbucket22.txt 2 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-09/srcbucket23.txt 3 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket20.txt 0 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket21.txt 1 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket22.txt 2 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket23.txt 3 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-09/srcbucket20.txt 0 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-09/srcbucket21.txt 1 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-09/srcbucket22.txt 2 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-09/srcbucket23.txt 3 Stage: Stage-1 Map Reduce @@ -198,9 +198,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-24-59_289_127678237669643408/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-55-31_172_8830223960161562579/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-24-59_289_127678237669643408/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-55-31_172_8830223960161562579/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -210,14 +210,14 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288895099 + transient_lastDdlTime 1297245331 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -225,10 +225,10 @@ Map Reduce Local Work Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08 [b] - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-09 [b] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08 [b] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-09 [b] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08 Partition base file name: ds=2008-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -242,13 +242,13 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part - name srcbucket_mapjoin_part + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08 + name default.srcbucket_mapjoin_part partition_columns ds serialization.ddl struct srcbucket_mapjoin_part { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288895084 + transient_lastDdlTime 1297245322 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -260,17 +260,17 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part - name srcbucket_mapjoin_part + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part + name default.srcbucket_mapjoin_part partition_columns ds serialization.ddl struct srcbucket_mapjoin_part { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288895084 + transient_lastDdlTime 1297245322 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket_mapjoin_part - name: srcbucket_mapjoin_part - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-09 + name: default.srcbucket_mapjoin_part + name: default.srcbucket_mapjoin_part + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-09 Partition base file name: ds=2008-04-09 input format: org.apache.hadoop.mapred.TextInputFormat @@ -284,13 +284,13 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part - name srcbucket_mapjoin_part + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-09 + name default.srcbucket_mapjoin_part partition_columns ds serialization.ddl struct srcbucket_mapjoin_part { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288895084 + transient_lastDdlTime 1297245322 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -302,16 +302,16 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part - name srcbucket_mapjoin_part + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part + name default.srcbucket_mapjoin_part partition_columns ds serialization.ddl struct srcbucket_mapjoin_part { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288895084 + transient_lastDdlTime 1297245322 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket_mapjoin_part - name: srcbucket_mapjoin_part + name: default.srcbucket_mapjoin_part + name: default.srcbucket_mapjoin_part Stage: Stage-5 Conditional Operator @@ -320,14 +320,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-24-59_289_127678237669643408/-ext-10002 - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-24-59_289_127678237669643408/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-55-31_172_8830223960161562579/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-55-31_172_8830223960161562579/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-24-59_289_127678237669643408/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-55-31_172_8830223960161562579/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -337,28 +337,28 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288895099 + transient_lastDdlTime 1297245331 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - tmp directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-24-59_289_127678237669643408/-ext-10001 + name: default.bucketmapjoin_tmp_result + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-55-31_172_8830223960161562579/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-24-59_289_127678237669643408/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-55-31_172_8830223960161562579/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-24-59_289_127678237669643408/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-55-31_172_8830223960161562579/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-24-59_289_127678237669643408/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-55-31_172_8830223960161562579/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -369,22 +369,22 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288895099 + transient_lastDdlTime 1297245331 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-24-59_289_127678237669643408/-ext-10002 [pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-24-59_289_127678237669643408/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-55-31_172_8830223960161562579/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-55-31_172_8830223960161562579/-ext-10002] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-24-59_289_127678237669643408/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-55-31_172_8830223960161562579/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -395,12 +395,12 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288895099 + transient_lastDdlTime 1297245331 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -411,15 +411,15 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288895099 + transient_lastDdlTime 1297245331 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result PREHOOK: query: insert overwrite table bucketmapjoin_tmp_result @@ -446,11 +446,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_11-25-24_662_1799707746593499124/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-55-40_483_6924370250792011814/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_11-25-24_662_1799707746593499124/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-55-40_483_6924370250792011814/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_tmp_result.key SIMPLE [(srcbucket_mapjoin)a.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_tmp_result.value1 SIMPLE [(srcbucket_mapjoin)a.FieldSchema(name:value, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_tmp_result.value2 SIMPLE [(srcbucket_mapjoin_part)b.FieldSchema(name:value, type:string, comment:null), ] @@ -501,11 +501,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_11-25-57_995_7569034646613062387/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-55-55_716_2350671395681563204/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_11-25-57_995_7569034646613062387/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-55-55_716_2350671395681563204/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value2 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value2, type:string, comment:null), ] @@ -544,14 +544,14 @@ PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_hash_result_1 PREHOOK: Input: default@bucketmapjoin_hash_result_2 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_11-26-10_276_2123427496583071251/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-56-03_755_3455379609450007030/-mr-10000 POSTHOOK: query: select a.key-b.key, a.value1-b.value1, a.value2-b.value2 from bucketmapjoin_hash_result_1 a left outer join bucketmapjoin_hash_result_2 b on a.key = b.key POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_hash_result_1 POSTHOOK: Input: default@bucketmapjoin_hash_result_2 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_11-26-10_276_2123427496583071251/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-56-03_755_3455379609450007030/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value2 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value2, type:string, comment:null), ] @@ -626,12 +626,12 @@ Alias Bucket Base File Name Mapping: a {srcbucket22.txt=[srcbucket20.txt], srcbucket23.txt=[srcbucket21.txt], ds=2008-04-09/srcbucket22.txt=[srcbucket20.txt], ds=2008-04-09/srcbucket23.txt=[srcbucket21.txt]} Alias Bucket File Name Mapping: - a {pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket22.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket23.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-09/srcbucket22.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-09/srcbucket23.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt]} + a {pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket22.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket23.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-09/srcbucket22.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-09/srcbucket23.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt]} Alias Bucket Output File Name Mapping: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket22.txt 0 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket23.txt 1 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-09/srcbucket22.txt 0 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-09/srcbucket23.txt 1 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket22.txt 0 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket23.txt 1 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-09/srcbucket22.txt 0 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-09/srcbucket23.txt 1 Stage: Stage-1 Map Reduce @@ -673,9 +673,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-26-15_858_2943817650725873010/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-07_980_2340222526645215113/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-26-15_858_2943817650725873010/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-07_980_2340222526645215113/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -685,8 +685,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 928 @@ -694,9 +694,9 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 17966 - transient_lastDdlTime 1288895157 + transient_lastDdlTime 1297245355 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -704,10 +704,10 @@ Map Reduce Local Work Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08 [b] - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-09 [b] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08 [b] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-09 [b] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08 Partition base file name: ds=2008-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -721,13 +721,13 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2 - name srcbucket_mapjoin_part_2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08 + name default.srcbucket_mapjoin_part_2 partition_columns ds serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288895094 + transient_lastDdlTime 1297245327 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -739,17 +739,17 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2 - name srcbucket_mapjoin_part_2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2 + name default.srcbucket_mapjoin_part_2 partition_columns ds serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288895094 + transient_lastDdlTime 1297245327 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket_mapjoin_part_2 - name: srcbucket_mapjoin_part_2 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-09 + name: default.srcbucket_mapjoin_part_2 + name: default.srcbucket_mapjoin_part_2 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-09 Partition base file name: ds=2008-04-09 input format: org.apache.hadoop.mapred.TextInputFormat @@ -763,13 +763,13 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2 - name srcbucket_mapjoin_part_2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-09 + name default.srcbucket_mapjoin_part_2 partition_columns ds serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288895094 + transient_lastDdlTime 1297245327 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -781,16 +781,16 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2 - name srcbucket_mapjoin_part_2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2 + name default.srcbucket_mapjoin_part_2 partition_columns ds serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288895094 + transient_lastDdlTime 1297245327 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket_mapjoin_part_2 - name: srcbucket_mapjoin_part_2 + name: default.srcbucket_mapjoin_part_2 + name: default.srcbucket_mapjoin_part_2 Stage: Stage-5 Conditional Operator @@ -799,14 +799,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-26-15_858_2943817650725873010/-ext-10002 - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-26-15_858_2943817650725873010/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-07_980_2340222526645215113/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-07_980_2340222526645215113/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-26-15_858_2943817650725873010/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-07_980_2340222526645215113/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -816,8 +816,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 928 @@ -825,23 +825,23 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 17966 - transient_lastDdlTime 1288895157 + transient_lastDdlTime 1297245355 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - tmp directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-26-15_858_2943817650725873010/-ext-10001 + name: default.bucketmapjoin_tmp_result + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-07_980_2340222526645215113/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-26-15_858_2943817650725873010/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-07_980_2340222526645215113/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-26-15_858_2943817650725873010/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-07_980_2340222526645215113/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-26-15_858_2943817650725873010/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-07_980_2340222526645215113/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -852,8 +852,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 928 @@ -861,17 +861,17 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 17966 - transient_lastDdlTime 1288895157 + transient_lastDdlTime 1297245355 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-26-15_858_2943817650725873010/-ext-10002 [pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-26-15_858_2943817650725873010/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-07_980_2340222526645215113/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-07_980_2340222526645215113/-ext-10002] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-26-15_858_2943817650725873010/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-07_980_2340222526645215113/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -882,8 +882,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 928 @@ -891,7 +891,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 17966 - transient_lastDdlTime 1288895157 + transient_lastDdlTime 1297245355 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -902,8 +902,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 928 @@ -911,10 +911,10 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 17966 - transient_lastDdlTime 1288895157 + transient_lastDdlTime 1297245355 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result PREHOOK: query: insert overwrite table bucketmapjoin_tmp_result @@ -953,11 +953,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_11-26-33_961_2572869140765524365/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-56-17_063_1558353475718207799/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_11-26-33_961_2572869140765524365/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-56-17_063_1558353475718207799/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value2 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value2, type:string, comment:null), ] @@ -1044,11 +1044,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_11-27-04_712_209753154817947520/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-56-31_949_2891209646096894306/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_11-27-04_712_209753154817947520/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-56-31_949_2891209646096894306/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] @@ -1111,14 +1111,14 @@ PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_hash_result_1 PREHOOK: Input: default@bucketmapjoin_hash_result_2 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_11-27-16_508_7488072457189411491/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-56-40_021_7720313513811904023/-mr-10000 POSTHOOK: query: select a.key-b.key, a.value1-b.value1, a.value2-b.value2 from bucketmapjoin_hash_result_1 a left outer join bucketmapjoin_hash_result_2 b on a.key = b.key POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_hash_result_1 POSTHOOK: Input: default@bucketmapjoin_hash_result_2 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_11-27-16_508_7488072457189411491/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-56-40_021_7720313513811904023/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] Index: ql/src/test/results/clientpositive/pcr.q.out =================================================================== --- ql/src/test/results/clientpositive/pcr.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/pcr.q.out (working copy) @@ -112,10 +112,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -128,8 +128,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -138,7 +138,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -149,8 +149,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -159,11 +159,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name: default.pcr_t1 + name: default.pcr_t1 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -176,8 +176,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -186,7 +186,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -197,8 +197,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -207,18 +207,18 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 + name: default.pcr_t1 + name: default.pcr_t1 Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-11-05_17-34-16_111_3919723371839835728/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-20-06_833_7924744716467182834/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-11-05_17-34-16_111_3919723371839835728/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-20-06_833_7924744716467182834/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -239,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/sdong/hive_2010-11-05_17-34-16_296_6105540056139076012/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-06_968_4905903043889903723/-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/sdong/hive_2010-11-05_17-34-16_296_6105540056139076012/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-06_968_4905903043889903723/-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), ] @@ -316,11 +316,11 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -333,8 +333,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -343,7 +343,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -354,8 +354,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -364,11 +364,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name: default.pcr_t1 + name: default.pcr_t1 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -381,8 +381,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -391,7 +391,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -402,8 +402,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -412,11 +412,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + name: default.pcr_t1 + name: default.pcr_t1 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -429,8 +429,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -439,7 +439,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -450,8 +450,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -460,18 +460,18 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 + name: default.pcr_t1 + name: default.pcr_t1 Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-11-05_17-34-19_112_6362425175360111410/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-20-10_482_1380495485425449616/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-11-05_17-34-19_112_6362425175360111410/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-20-10_482_1380495485425449616/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -493,13 +493,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/sdong/hive_2010-11-05_17-34-19_255_89299902383839822/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-10_617_4370545670959661139/-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/sdong/hive_2010-11-05_17-34-19_255_89299902383839822/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-10_617_4370545670959661139/-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), ] @@ -612,10 +612,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -628,8 +628,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -638,7 +638,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -649,8 +649,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -659,11 +659,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name: default.pcr_t1 + name: default.pcr_t1 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -676,8 +676,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -686,7 +686,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -697,8 +697,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -707,18 +707,18 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 + name: default.pcr_t1 + name: default.pcr_t1 Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-11-05_17-34-21_971_2721100447504408773/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-20-14_938_6134430986285623332/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-11-05_17-34-21_971_2721100447504408773/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-20-14_938_6134430986285623332/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -739,12 +739,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/sdong/hive_2010-11-05_17-34-22_103_6888720968515668676/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-15_062_2902037877664102506/-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/sdong/hive_2010-11-05_17-34-22_103_6888720968515668676/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-15_062_2902037877664102506/-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), ] @@ -824,10 +824,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -840,8 +840,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -850,7 +850,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -861,8 +861,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -871,11 +871,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + name: default.pcr_t1 + name: default.pcr_t1 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -888,8 +888,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -898,7 +898,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -909,8 +909,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -919,18 +919,18 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 + name: default.pcr_t1 + name: default.pcr_t1 Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-11-05_17-34-24_853_8436321291165315580/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-20-18_643_5585237715191318652/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-11-05_17-34-24_853_8436321291165315580/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-20-18_643_5585237715191318652/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -952,13 +952,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/sdong/hive_2010-11-05_17-34-24_976_3662180891662389807/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-18_769_3564230665369276149/-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/sdong/hive_2010-11-05_17-34-24_976_3662180891662389807/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-18_769_3564230665369276149/-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), ] @@ -1038,11 +1038,11 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -1055,8 +1055,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -1065,7 +1065,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1076,8 +1076,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -1086,11 +1086,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name: default.pcr_t1 + name: default.pcr_t1 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -1103,8 +1103,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -1113,7 +1113,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1124,8 +1124,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -1134,11 +1134,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + name: default.pcr_t1 + name: default.pcr_t1 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -1151,8 +1151,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -1161,7 +1161,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1172,8 +1172,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -1182,18 +1182,18 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 + name: default.pcr_t1 + name: default.pcr_t1 Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-11-05_17-34-27_676_7398660015680828841/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-20-22_418_1278063289458953465/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-11-05_17-34-27_676_7398660015680828841/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-20-22_418_1278063289458953465/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1216,14 +1216,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/sdong/hive_2010-11-05_17-34-27_811_9089007594129609692/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-22_555_8125537534977005356/-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/sdong/hive_2010-11-05_17-34-27_811_9089007594129609692/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-22_555_8125537534977005356/-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), ] @@ -1311,11 +1311,11 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -1328,8 +1328,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -1338,7 +1338,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1349,8 +1349,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -1359,11 +1359,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name: default.pcr_t1 + name: default.pcr_t1 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -1376,8 +1376,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -1386,7 +1386,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1397,8 +1397,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -1407,11 +1407,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + name: default.pcr_t1 + name: default.pcr_t1 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -1424,8 +1424,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -1434,7 +1434,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1445,8 +1445,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -1455,18 +1455,18 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 + name: default.pcr_t1 + name: default.pcr_t1 Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-11-05_17-34-30_559_188833613671342716/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-20-26_309_6421573376416993710/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-11-05_17-34-30_559_188833613671342716/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-20-26_309_6421573376416993710/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1489,14 +1489,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/sdong/hive_2010-11-05_17-34-30_683_7644452392487183380/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-26_439_6693127907832425913/-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/sdong/hive_2010-11-05_17-34-30_683_7644452392487183380/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-26_439_6693127907832425913/-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), ] @@ -1588,10 +1588,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -1604,8 +1604,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -1614,7 +1614,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1625,8 +1625,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -1635,11 +1635,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name: default.pcr_t1 + name: default.pcr_t1 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -1652,8 +1652,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -1662,7 +1662,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1673,8 +1673,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -1683,18 +1683,18 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 + name: default.pcr_t1 + name: default.pcr_t1 Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-11-05_17-34-33_424_1011965923970633832/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-20-30_133_9150885041139076163/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-11-05_17-34-33_424_1011965923970633832/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-20-30_133_9150885041139076163/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1715,12 +1715,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/sdong/hive_2010-11-05_17-34-33_538_6513578499993973260/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-30_264_2951119060468432343/-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/sdong/hive_2010-11-05_17-34-33_538_6513578499993973260/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-30_264_2951119060468432343/-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), ] @@ -1779,10 +1779,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -1795,8 +1795,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -1805,7 +1805,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1816,8 +1816,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -1826,11 +1826,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name: default.pcr_t1 + name: default.pcr_t1 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -1843,8 +1843,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -1853,7 +1853,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1864,8 +1864,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -1874,18 +1874,18 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 + name: default.pcr_t1 + name: default.pcr_t1 Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-11-05_17-34-36_196_7175083801271646953/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-20-33_844_8789429682319342790/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-11-05_17-34-36_196_7175083801271646953/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-20-33_844_8789429682319342790/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1906,12 +1906,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/sdong/hive_2010-11-05_17-34-36_301_1850211239558171986/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-33_966_85751878525315418/-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/sdong/hive_2010-11-05_17-34-36_301_1850211239558171986/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-33_966_85751878525315418/-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), ] @@ -2010,11 +2010,11 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -2027,8 +2027,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -2037,7 +2037,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2048,8 +2048,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -2058,11 +2058,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name: default.pcr_t1 + name: default.pcr_t1 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -2075,8 +2075,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -2085,7 +2085,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2096,8 +2096,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -2106,11 +2106,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + name: default.pcr_t1 + name: default.pcr_t1 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -2123,8 +2123,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -2133,7 +2133,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2144,8 +2144,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -2154,18 +2154,18 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 + name: default.pcr_t1 + name: default.pcr_t1 Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-11-05_17-34-38_950_1230411866045321283/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-20-37_535_960499173539793548/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-11-05_17-34-38_950_1230411866045321283/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-20-37_535_960499173539793548/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -2187,13 +2187,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/sdong/hive_2010-11-05_17-34-39_070_3268769647482792443/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-37_662_4023756233543445198/-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/sdong/hive_2010-11-05_17-34-39_070_3268769647482792443/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-37_662_4023756233543445198/-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), ] @@ -2323,10 +2323,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -2339,8 +2339,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -2349,7 +2349,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2360,8 +2360,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -2370,11 +2370,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name: default.pcr_t1 + name: default.pcr_t1 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -2387,8 +2387,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -2397,7 +2397,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2408,8 +2408,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -2418,18 +2418,18 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 + name: default.pcr_t1 + name: default.pcr_t1 Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-11-05_17-34-41_757_6239192059576021138/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-20-41_346_3257060003334114931/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-11-05_17-34-41_757_6239192059576021138/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-20-41_346_3257060003334114931/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -2450,12 +2450,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/sdong/hive_2010-11-05_17-34-41_870_7947283426465180902/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-41_490_3027820568763078329/-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/sdong/hive_2010-11-05_17-34-41_870_7947283426465180902/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-41_490_3027820568763078329/-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), ] @@ -2537,9 +2537,9 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [t2, t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [t2, t1] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -2552,8 +2552,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -2562,7 +2562,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2573,8 +2573,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -2583,10 +2583,10 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 + name: default.pcr_t1 + name: default.pcr_t1 Reduce Operator Tree: Join Operator condition map: @@ -2614,7 +2614,7 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-11-05_17-34-44_524_1901388139030837948/-mr-10002 + directory: file:/tmp/sdong/hive_2011-02-09_03-20-45_159_8085334747781459339/-mr-10002 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -2630,7 +2630,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/sdong/hive_2010-11-05_17-34-44_524_1901388139030837948/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_03-20-45_159_8085334747781459339/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -2652,9 +2652,9 @@ type: string Needs Tagging: false Path -> Alias: - file:/tmp/sdong/hive_2010-11-05_17-34-44_524_1901388139030837948/-mr-10002 [file:/tmp/sdong/hive_2010-11-05_17-34-44_524_1901388139030837948/-mr-10002] + file:/tmp/sdong/hive_2011-02-09_03-20-45_159_8085334747781459339/-mr-10002 [file:/tmp/sdong/hive_2011-02-09_03-20-45_159_8085334747781459339/-mr-10002] Path -> Partition: - file:/tmp/sdong/hive_2010-11-05_17-34-44_524_1901388139030837948/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_03-20-45_159_8085334747781459339/-mr-10002 Partition base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -2675,9 +2675,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-11-05_17-34-44_524_1901388139030837948/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-20-45_159_8085334747781459339/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-11-05_17-34-44_524_1901388139030837948/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-20-45_159_8085334747781459339/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -2697,11 +2697,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/sdong/hive_2010-11-05_17-34-44_656_4437725665139001104/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-45_291_2724578981328887088/-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/sdong/hive_2010-11-05_17-34-44_656_4437725665139001104/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-45_291_2724578981328887088/-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), ] @@ -2820,10 +2820,10 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [t1] - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [t2] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [t2] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -2836,8 +2836,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -2846,7 +2846,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2857,8 +2857,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -2867,11 +2867,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name: default.pcr_t1 + name: default.pcr_t1 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -2884,8 +2884,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -2894,7 +2894,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2905,8 +2905,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 3 numPartitions 3 numRows 60 @@ -2915,10 +2915,10 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 540 - transient_lastDdlTime 1289003656 + transient_lastDdlTime 1297250406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 + name: default.pcr_t1 + name: default.pcr_t1 Reduce Operator Tree: Join Operator condition map: @@ -2946,7 +2946,7 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-11-05_17-34-49_782_8955930902313951645/-mr-10002 + directory: file:/tmp/sdong/hive_2011-02-09_03-20-52_660_3677617261478244608/-mr-10002 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -2962,7 +2962,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/sdong/hive_2010-11-05_17-34-49_782_8955930902313951645/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_03-20-52_660_3677617261478244608/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -2984,9 +2984,9 @@ type: string Needs Tagging: false Path -> Alias: - file:/tmp/sdong/hive_2010-11-05_17-34-49_782_8955930902313951645/-mr-10002 [file:/tmp/sdong/hive_2010-11-05_17-34-49_782_8955930902313951645/-mr-10002] + file:/tmp/sdong/hive_2011-02-09_03-20-52_660_3677617261478244608/-mr-10002 [file:/tmp/sdong/hive_2011-02-09_03-20-52_660_3677617261478244608/-mr-10002] Path -> Partition: - file:/tmp/sdong/hive_2010-11-05_17-34-49_782_8955930902313951645/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_03-20-52_660_3677617261478244608/-mr-10002 Partition base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -3007,9 +3007,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-11-05_17-34-49_782_8955930902313951645/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-20-52_660_3677617261478244608/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-11-05_17-34-49_782_8955930902313951645/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-20-52_660_3677617261478244608/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -3030,12 +3030,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/sdong/hive_2010-11-05_17-34-49_930_1322822091777948388/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-52_823_7748685652180714473/-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/sdong/hive_2010-11-05_17-34-49_930_1322822091777948388/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-20-52_823_7748685652180714473/-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), ] @@ -3161,12 +3161,12 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-11 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-11 [pcr_t1] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -3179,8 +3179,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + name default.pcr_t1 numFiles 4 numPartitions 4 numRows 80 @@ -3189,7 +3189,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1289003699 + transient_lastDdlTime 1297250464 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -3200,8 +3200,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 4 numPartitions 4 numRows 80 @@ -3210,11 +3210,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1289003699 + transient_lastDdlTime 1297250464 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name: default.pcr_t1 + name: default.pcr_t1 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -3227,8 +3227,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name default.pcr_t1 numFiles 4 numPartitions 4 numRows 80 @@ -3237,7 +3237,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1289003699 + transient_lastDdlTime 1297250464 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -3248,8 +3248,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 4 numPartitions 4 numRows 80 @@ -3258,11 +3258,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1289003699 + transient_lastDdlTime 1297250464 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + name: default.pcr_t1 + name: default.pcr_t1 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -3275,8 +3275,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + name default.pcr_t1 numFiles 4 numPartitions 4 numRows 80 @@ -3285,7 +3285,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1289003699 + transient_lastDdlTime 1297250464 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -3296,8 +3296,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 4 numPartitions 4 numRows 80 @@ -3306,11 +3306,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1289003699 + transient_lastDdlTime 1297250464 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-11 + name: default.pcr_t1 + name: default.pcr_t1 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -3323,8 +3323,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-11 + name default.pcr_t1 numFiles 4 numPartitions 4 numRows 80 @@ -3333,7 +3333,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1289003699 + transient_lastDdlTime 1297250464 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -3344,8 +3344,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 4 numPartitions 4 numRows 80 @@ -3354,18 +3354,18 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1289003699 + transient_lastDdlTime 1297250464 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 + name: default.pcr_t1 + name: default.pcr_t1 Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-11-05_17-34-59_389_7099181745438019309/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-21-04_603_6754653113010873026/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-11-05_17-34-59_389_7099181745438019309/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-21-04_603_6754653113010873026/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -3388,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/sdong/hive_2010-11-05_17-34-59_522_5149195872862475632/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-21-04_746_3406820406308771594/-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/sdong/hive_2010-11-05_17-34-59_522_5149195872862475632/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-21-04_746_3406820406308771594/-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), ] @@ -3511,11 +3511,11 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 [pcr_t1] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -3528,8 +3528,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + name default.pcr_t1 numFiles 4 numPartitions 4 numRows 80 @@ -3538,7 +3538,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1289003699 + transient_lastDdlTime 1297250464 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -3549,8 +3549,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 4 numPartitions 4 numRows 80 @@ -3559,11 +3559,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1289003699 + transient_lastDdlTime 1297250464 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name: default.pcr_t1 + name: default.pcr_t1 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -3576,8 +3576,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-09 + name default.pcr_t1 numFiles 4 numPartitions 4 numRows 80 @@ -3586,7 +3586,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1289003699 + transient_lastDdlTime 1297250464 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -3597,8 +3597,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 4 numPartitions 4 numRows 80 @@ -3607,11 +3607,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1289003699 + transient_lastDdlTime 1297250464 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + name: default.pcr_t1 + name: default.pcr_t1 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -3624,8 +3624,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-10 + name default.pcr_t1 numFiles 4 numPartitions 4 numRows 80 @@ -3634,7 +3634,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1289003699 + transient_lastDdlTime 1297250464 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -3645,8 +3645,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 4 numPartitions 4 numRows 80 @@ -3655,18 +3655,18 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1289003699 + transient_lastDdlTime 1297250464 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 + name: default.pcr_t1 + name: default.pcr_t1 Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-11-05_17-35-05_318_2543406778496103854/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-21-08_613_4104068631898535002/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-11-05_17-35-05_318_2543406778496103854/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-21-08_613_4104068631898535002/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -3688,13 +3688,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/sdong/hive_2010-11-05_17-35-05_440_863584651192258889/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-21-08_752_7210356420130022765/-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/sdong/hive_2010-11-05_17-35-05_440_863584651192258889/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-21-08_752_7210356420130022765/-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), ] @@ -3822,9 +3822,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10004 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10004 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -3834,14 +3834,14 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t2 - name pcr_t2 + location pfile:/data/users/sdong/www/open-source-hive1/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 1289003708 + transient_lastDdlTime 1297250472 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t2 + name: default.pcr_t2 TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -3855,9 +3855,9 @@ File Output Operator compressed: false GlobalTableId: 2 - directory: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10005 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10005 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10002/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10002/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -3867,22 +3867,22 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t3 - name pcr_t3 + location pfile:/data/users/sdong/www/open-source-hive1/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 1289003708 + transient_lastDdlTime 1297250472 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t3 + name: default.pcr_t3 TotalFiles: 1 GatherStats: true MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -3895,8 +3895,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + name default.pcr_t1 numFiles 4 numPartitions 4 numRows 80 @@ -3905,7 +3905,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1289003699 + transient_lastDdlTime 1297250464 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -3916,8 +3916,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 4 numPartitions 4 numRows 80 @@ -3926,10 +3926,10 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1289003699 + transient_lastDdlTime 1297250464 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 + name: default.pcr_t1 + name: default.pcr_t1 Stage: Stage-6 Conditional Operator @@ -3938,14 +3938,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10004 - destination: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10004 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -3955,28 +3955,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/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t2 - name pcr_t2 + location pfile:/data/users/sdong/www/open-source-hive1/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 1289003708 + transient_lastDdlTime 1297250472 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t2 - tmp directory: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10001 + name: default.pcr_t2 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10001 Stage: Stage-3 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10000/ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10004 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10004 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -3987,22 +3987,22 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t2 - name pcr_t2 + location pfile:/data/users/sdong/www/open-source-hive1/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 1289003708 + transient_lastDdlTime 1297250472 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t2 + name: default.pcr_t2 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10004 [pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10004] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10004 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10004] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10004 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10004 Partition base file name: -ext-10004 input format: org.apache.hadoop.mapred.TextInputFormat @@ -4013,12 +4013,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/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t2 - name pcr_t2 + location pfile:/data/users/sdong/www/open-source-hive1/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 1289003708 + transient_lastDdlTime 1297250472 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -4029,15 +4029,15 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t2 - name pcr_t2 + location pfile:/data/users/sdong/www/open-source-hive1/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 1289003708 + transient_lastDdlTime 1297250472 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t2 - name: pcr_t2 + name: default.pcr_t2 + name: default.pcr_t2 Stage: Stage-10 Conditional Operator @@ -4046,14 +4046,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10005 - destination: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10002 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10005 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10002 Stage: Stage-1 Move Operator tables: replace: true - source: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10002 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10002 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -4063,28 +4063,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/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t3 - name pcr_t3 + location pfile:/data/users/sdong/www/open-source-hive1/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 1289003708 + transient_lastDdlTime 1297250472 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t3 - tmp directory: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10003 + name: default.pcr_t3 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10003 Stage: Stage-7 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10002/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10002/ Stage: Stage-8 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10005 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10005 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10002 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -4095,22 +4095,22 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t3 - name pcr_t3 + location pfile:/data/users/sdong/www/open-source-hive1/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 1289003708 + transient_lastDdlTime 1297250472 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t3 + name: default.pcr_t3 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10005 [pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10005] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10005 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10005] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-08_271_2491673749357085145/-ext-10005 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-12_704_8970983254450738993/-ext-10005 Partition base file name: -ext-10005 input format: org.apache.hadoop.mapred.TextInputFormat @@ -4121,12 +4121,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/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t3 - name pcr_t3 + location pfile:/data/users/sdong/www/open-source-hive1/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 1289003708 + transient_lastDdlTime 1297250472 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -4137,15 +4137,15 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t3 - name pcr_t3 + location pfile:/data/users/sdong/www/open-source-hive1/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 1289003708 + transient_lastDdlTime 1297250472 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t3 - name: pcr_t3 + name: default.pcr_t3 + name: default.pcr_t3 PREHOOK: query: from pcr_t1 @@ -4235,9 +4235,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10004 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10004 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -4247,8 +4247,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t2 - name pcr_t2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t2 + name default.pcr_t2 numFiles 1 numPartitions 0 numRows 20 @@ -4256,9 +4256,9 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1289003712 + transient_lastDdlTime 1297250477 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t2 + name: default.pcr_t2 TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -4277,9 +4277,9 @@ File Output Operator compressed: false GlobalTableId: 2 - directory: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10005 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10005 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10002/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10002/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -4289,8 +4289,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t3 - name pcr_t3 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t3 + name default.pcr_t3 numFiles 1 numPartitions 0 numRows 20 @@ -4298,17 +4298,17 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1289003712 + transient_lastDdlTime 1297250477 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t3 + name: default.pcr_t3 TotalFiles: 1 GatherStats: true MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 [pcr_t1] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -4321,8 +4321,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1/ds=2000-04-08 + name default.pcr_t1 numFiles 4 numPartitions 4 numRows 80 @@ -4331,7 +4331,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1289003699 + transient_lastDdlTime 1297250464 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -4342,8 +4342,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t1 - name pcr_t1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t1 + name default.pcr_t1 numFiles 4 numPartitions 4 numRows 80 @@ -4352,10 +4352,10 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 720 - transient_lastDdlTime 1289003699 + transient_lastDdlTime 1297250464 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t1 - name: pcr_t1 + name: default.pcr_t1 + name: default.pcr_t1 Stage: Stage-6 Conditional Operator @@ -4364,14 +4364,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10004 - destination: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10004 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -4381,8 +4381,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t2 - name pcr_t2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t2 + name default.pcr_t2 numFiles 1 numPartitions 0 numRows 20 @@ -4390,23 +4390,23 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1289003712 + transient_lastDdlTime 1297250477 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t2 - tmp directory: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10001 + name: default.pcr_t2 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10001 Stage: Stage-3 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10000/ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10004 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10004 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -4417,8 +4417,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t2 - name pcr_t2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t2 + name default.pcr_t2 numFiles 1 numPartitions 0 numRows 20 @@ -4426,17 +4426,17 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1289003712 + transient_lastDdlTime 1297250477 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t2 + name: default.pcr_t2 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10004 [pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10004] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10004 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10004] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10004 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10004 Partition base file name: -ext-10004 input format: org.apache.hadoop.mapred.TextInputFormat @@ -4447,8 +4447,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t2 - name pcr_t2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t2 + name default.pcr_t2 numFiles 1 numPartitions 0 numRows 20 @@ -4456,7 +4456,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1289003712 + transient_lastDdlTime 1297250477 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -4467,8 +4467,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t2 - name pcr_t2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t2 + name default.pcr_t2 numFiles 1 numPartitions 0 numRows 20 @@ -4476,10 +4476,10 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1289003712 + transient_lastDdlTime 1297250477 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t2 - name: pcr_t2 + name: default.pcr_t2 + name: default.pcr_t2 Stage: Stage-10 Conditional Operator @@ -4488,14 +4488,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10005 - destination: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10002 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10005 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10002 Stage: Stage-1 Move Operator tables: replace: true - source: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10002 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10002 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -4505,8 +4505,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t3 - name pcr_t3 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t3 + name default.pcr_t3 numFiles 1 numPartitions 0 numRows 20 @@ -4514,23 +4514,23 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1289003712 + transient_lastDdlTime 1297250477 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t3 - tmp directory: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10003 + name: default.pcr_t3 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10003 Stage: Stage-7 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10002/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10002/ Stage: Stage-8 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10005 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10005 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10002 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -4541,8 +4541,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t3 - name pcr_t3 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t3 + name default.pcr_t3 numFiles 1 numPartitions 0 numRows 20 @@ -4550,17 +4550,17 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1289003712 + transient_lastDdlTime 1297250477 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t3 + name: default.pcr_t3 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10005 [pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10005] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10005 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10005] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive/build/ql/scratchdir/hive_2010-11-05_17-35-12_634_1070293695012476042/-ext-10005 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-18_045_1629711623328223378/-ext-10005 Partition base file name: -ext-10005 input format: org.apache.hadoop.mapred.TextInputFormat @@ -4571,8 +4571,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t3 - name pcr_t3 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t3 + name default.pcr_t3 numFiles 1 numPartitions 0 numRows 20 @@ -4580,7 +4580,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1289003712 + transient_lastDdlTime 1297250477 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -4591,8 +4591,8 @@ columns.types int: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-hive/build/ql/test/data/warehouse/pcr_t3 - name pcr_t3 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/pcr_t3 + name default.pcr_t3 numFiles 1 numPartitions 0 numRows 20 @@ -4600,10 +4600,10 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 180 - transient_lastDdlTime 1289003712 + transient_lastDdlTime 1297250477 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: pcr_t3 - name: pcr_t3 + name: default.pcr_t3 + name: default.pcr_t3 PREHOOK: query: from pcr_t1 @@ -4696,9 +4696,9 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [srcpart] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [srcpart] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -4712,13 +4712,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-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289003635 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -4729,25 +4729,25 @@ 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-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289003635 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Extract Limit File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-11-05_17-35-16_983_5283067218878072339/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-21-24_055_4597406129350810860/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-11-05_17-35-16_983_5283067218878072339/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-21-24_055_4597406129350810860/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -4766,10 +4766,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/sdong/hive_2010-11-05_17-35-17_073_1370776003154357268/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-21-24_170_1552291465893813683/-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/sdong/hive_2010-11-05_17-35-17_073_1370776003154357268/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-21-24_170_1552291465893813683/-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), ] @@ -4863,10 +4863,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [srcpart] - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [srcpart] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [srcpart] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [srcpart] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -4880,13 +4880,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-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289003635 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -4897,17 +4897,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-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289003635 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -4921,13 +4921,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-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289003635 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -4938,24 +4938,24 @@ 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-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289003635 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-11-05_17-35-19_596_3964637124852128595/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-21-27_559_236158690900097452/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-11-05_17-35-19_596_3964637124852128595/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-21-27_559_236158690900097452/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -4976,12 +4976,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_2010-11-05_17-35-19_707_6620369431037140548/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-21-27_686_8056361200112789801/-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/sdong/hive_2010-11-05_17-35-19_707_6620369431037140548/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-21-27_686_8056361200112789801/-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), ] @@ -5077,10 +5077,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [srcpart] - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [srcpart] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [srcpart] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [srcpart] Path -> Partition: - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -5094,13 +5094,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-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289003635 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -5111,17 +5111,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-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289003635 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/open-source-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + 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 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -5135,13 +5135,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-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289003635 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -5152,24 +5152,24 @@ 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-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289003635 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-11-05_17-35-22_381_5788106544475902868/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-21-31_338_4898995139120982192/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-11-05_17-35-22_381_5788106544475902868/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-21-31_338_4898995139120982192/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -5190,12 +5190,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/sdong/hive_2010-11-05_17-35-22_478_3557173607854214094/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-21-31_464_6966856264741696134/-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/sdong/hive_2010-11-05_17-35-22_478_3557173607854214094/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-21-31_464_6966856264741696134/-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/merge_dynamic_partition.q.out =================================================================== --- ql/src/test/results/clientpositive/merge_dynamic_partition.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/merge_dynamic_partition.q.out (working copy) @@ -69,7 +69,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: merge_dynamic_part + name: default.merge_dynamic_part Stage: Stage-0 Move Operator @@ -82,7 +82,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: merge_dynamic_part + name: default.merge_dynamic_part Stage: Stage-2 Stats-Aggr Operator @@ -101,10 +101,11 @@ PREHOOK: query: select * from merge_dynamic_part order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@merge_dynamic_part@ds=2008-04-08/hr=11 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-10_21-43-53_940_2634395367591841528/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-08-08_918_7799414812848776913/-mr-10000 POSTHOOK: query: select * from merge_dynamic_part order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@merge_dynamic_part@ds=2008-04-08/hr=11 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-08-08_918_7799414812848776913/-mr-10000 POSTHOOK: Lineage: merge_dynamic_part PARTITION(ds=2008-04-08,hr=11).key SIMPLE [(srcpart_merge_dp)srcpart_merge_dp.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: merge_dynamic_part PARTITION(ds=2008-04-08,hr=11).value SIMPLE [(srcpart_merge_dp)srcpart_merge_dp.FieldSchema(name:value, type:string, comment:default), ] 0 val_0 2008-04-08 11 @@ -615,7 +616,7 @@ POSTHOOK: Lineage: merge_dynamic_part PARTITION(ds=2008-04-08,hr=11).value SIMPLE [(srcpart_merge_dp)srcpart_merge_dp.FieldSchema(name:value, type:string, comment:default), ] tableName:merge_dynamic_part owner:null -location:pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/merge_dynamic_part +location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_dynamic_part inputformat:org.apache.hadoop.mapred.TextInputFormat outputformat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat columns:struct columns { string key, string value} @@ -626,7 +627,7 @@ maxFileSize:1612 minFileSize:1358 lastAccessTime:0 -lastUpdateTime:1289454233000 +lastUpdateTime:1297249688000 PREHOOK: query: explain insert overwrite table merge_dynamic_part partition (ds='2008-04-08', hr=11) select key, value from srcpart_merge_dp where ds='2008-04-08' @@ -672,7 +673,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: merge_dynamic_part + name: default.merge_dynamic_part Stage: Stage-5 Conditional Operator @@ -681,7 +682,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-43-59_740_209003009979096611/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-08-13_921_1327447044347227321/-ext-10000 Stage: Stage-0 Move Operator @@ -694,7 +695,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: merge_dynamic_part + name: default.merge_dynamic_part Stage: Stage-2 Stats-Aggr Operator @@ -702,7 +703,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-43-59_740_209003009979096611/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-08-13_921_1327447044347227321/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -710,7 +711,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: merge_dynamic_part + name: default.merge_dynamic_part PREHOOK: query: insert overwrite table merge_dynamic_part partition (ds='2008-04-08', hr=11) select key, value from srcpart_merge_dp where ds='2008-04-08' @@ -728,10 +729,11 @@ PREHOOK: query: select * from merge_dynamic_part order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@merge_dynamic_part@ds=2008-04-08/hr=11 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-10_21-44-07_937_1316260934052203711/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-08-19_113_6802795170515220923/-mr-10000 POSTHOOK: query: select * from merge_dynamic_part order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@merge_dynamic_part@ds=2008-04-08/hr=11 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-08-19_113_6802795170515220923/-mr-10000 POSTHOOK: Lineage: merge_dynamic_part PARTITION(ds=2008-04-08,hr=11).key SIMPLE [(srcpart_merge_dp)srcpart_merge_dp.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: merge_dynamic_part PARTITION(ds=2008-04-08,hr=11).value SIMPLE [(srcpart_merge_dp)srcpart_merge_dp.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: merge_dynamic_part PARTITION(ds=2008-04-08,hr=11).key SIMPLE [(srcpart_merge_dp)srcpart_merge_dp.FieldSchema(name:key, type:string, comment:default), ] @@ -1246,7 +1248,7 @@ POSTHOOK: Lineage: merge_dynamic_part PARTITION(ds=2008-04-08,hr=11).value SIMPLE [(srcpart_merge_dp)srcpart_merge_dp.FieldSchema(name:value, type:string, comment:default), ] tableName:merge_dynamic_part owner:null -location:pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/merge_dynamic_part +location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_dynamic_part inputformat:org.apache.hadoop.mapred.TextInputFormat outputformat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat columns:struct columns { string key, string value} @@ -1257,7 +1259,7 @@ maxFileSize:5812 minFileSize:5812 lastAccessTime:0 -lastUpdateTime:1289454245000 +lastUpdateTime:1297249697000 PREHOOK: query: explain insert overwrite table merge_dynamic_part partition (ds, hr) select key, value, ds, hr from srcpart_merge_dp where ds='2008-04-08' and hr=11 @@ -1309,7 +1311,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: merge_dynamic_part + name: default.merge_dynamic_part Stage: Stage-5 Conditional Operator @@ -1318,7 +1320,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-44-12_145_2577288331870219341/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-08-22_822_2360830934222970904/-ext-10000 Stage: Stage-0 Move Operator @@ -1331,7 +1333,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: merge_dynamic_part + name: default.merge_dynamic_part Stage: Stage-2 Stats-Aggr Operator @@ -1339,7 +1341,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-44-12_145_2577288331870219341/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-08-22_822_2360830934222970904/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -1347,7 +1349,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: merge_dynamic_part + name: default.merge_dynamic_part PREHOOK: query: insert overwrite table merge_dynamic_part partition (ds, hr) select key, value, ds, hr from srcpart_merge_dp where ds='2008-04-08' and hr=11 @@ -1367,10 +1369,11 @@ PREHOOK: query: select * from merge_dynamic_part order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@merge_dynamic_part@ds=2008-04-08/hr=11 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-10_21-44-21_897_7437398250505351661/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-08-29_342_2183608698217131397/-mr-10000 POSTHOOK: query: select * from merge_dynamic_part order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@merge_dynamic_part@ds=2008-04-08/hr=11 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-08-29_342_2183608698217131397/-mr-10000 POSTHOOK: Lineage: merge_dynamic_part PARTITION(ds=2008-04-08,hr=11).key SIMPLE [(srcpart_merge_dp)srcpart_merge_dp.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: merge_dynamic_part PARTITION(ds=2008-04-08,hr=11).value SIMPLE [(srcpart_merge_dp)srcpart_merge_dp.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: merge_dynamic_part PARTITION(ds=2008-04-08,hr=11).key SIMPLE [(srcpart_merge_dp)srcpart_merge_dp.FieldSchema(name:key, type:string, comment:default), ] @@ -1889,7 +1892,7 @@ POSTHOOK: Lineage: merge_dynamic_part PARTITION(ds=2008-04-08,hr=11).value SIMPLE [(srcpart_merge_dp)srcpart_merge_dp.FieldSchema(name:value, type:string, comment:default), ] tableName:merge_dynamic_part owner:null -location:pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/merge_dynamic_part +location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_dynamic_part inputformat:org.apache.hadoop.mapred.TextInputFormat outputformat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat columns:struct columns { string key, string value} @@ -1900,5 +1903,5 @@ maxFileSize:5812 minFileSize:5812 lastAccessTime:0 -lastUpdateTime:1289454258000 +lastUpdateTime:1297249707000 Index: ql/src/test/results/clientpositive/load_dyn_part2.q.out =================================================================== --- ql/src/test/results/clientpositive/load_dyn_part2.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/load_dyn_part2.q.out (working copy) @@ -16,7 +16,7 @@ ds string hr string -Detailed Table Information Table(tableName:nzhang_part_bucket, dbName:default, owner:njain, createTime:1289453643, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:null), FieldSchema(name:value, type:string, comment:null), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/nzhang_part_bucket, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:10, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[key], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{transient_lastDdlTime=1289453643}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:nzhang_part_bucket, dbName:default, owner:sdong, createTime:1297248985, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:null), FieldSchema(name:value, type:string, comment:null), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_part_bucket, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:10, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[key], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{transient_lastDdlTime=1297248985}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) PREHOOK: query: explain insert overwrite table nzhang_part_bucket partition (ds='2010-03-23', hr) select key, value, hr from srcpart where ds is not null and hr is not null PREHOOK: type: QUERY @@ -73,7 +73,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part_bucket + name: default.nzhang_part_bucket Stage: Stage-0 Move Operator @@ -86,7 +86,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part_bucket + name: default.nzhang_part_bucket Stage: Stage-2 Stats-Aggr Operator @@ -124,10 +124,11 @@ PREHOOK: query: select * from nzhang_part_bucket where ds='2010-03-23' and hr='11' order by key PREHOOK: type: QUERY PREHOOK: Input: default@nzhang_part_bucket@ds=2010-03-23/hr=11 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-10_21-34-22_267_1694715967576226862/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-56-35_981_231145577310482361/-mr-10000 POSTHOOK: query: select * from nzhang_part_bucket where ds='2010-03-23' and hr='11' order by key POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_part_bucket@ds=2010-03-23/hr=11 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-56-35_981_231145577310482361/-mr-10000 POSTHOOK: Lineage: nzhang_part_bucket PARTITION(ds=2010-03-23,hr=11).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part_bucket PARTITION(ds=2010-03-23,hr=11).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part_bucket PARTITION(ds=2010-03-23,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] @@ -1135,10 +1136,11 @@ PREHOOK: query: select * from nzhang_part_bucket where ds='2010-03-23' and hr='12' order by key PREHOOK: type: QUERY PREHOOK: Input: default@nzhang_part_bucket@ds=2010-03-23/hr=12 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-10_21-34-29_769_8327141585204390266/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-56-40_841_4305056493704941819/-mr-10000 POSTHOOK: query: select * from nzhang_part_bucket where ds='2010-03-23' and hr='12' order by key POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_part_bucket@ds=2010-03-23/hr=12 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-56-40_841_4305056493704941819/-mr-10000 POSTHOOK: Lineage: nzhang_part_bucket PARTITION(ds=2010-03-23,hr=11).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part_bucket PARTITION(ds=2010-03-23,hr=11).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part_bucket PARTITION(ds=2010-03-23,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/groupby2_noskew_multi_distinct.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby2_noskew_multi_distinct.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby2_noskew_multi_distinct.q.out (working copy) @@ -93,7 +93,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_g2 + name: default.dest_g2 Stage: Stage-0 Move Operator @@ -103,7 +103,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_g2 + name: default.dest_g2 Stage: Stage-2 Stats-Aggr Operator @@ -127,11 +127,11 @@ PREHOOK: query: SELECT dest_g2.* FROM dest_g2 PREHOOK: type: QUERY PREHOOK: Input: default@dest_g2 -PREHOOK: Output: file:/tmp/amarsri/hive_2010-10-20_03-04-17_707_2990757298865083943/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-08-36_806_4005428358207331552/-mr-10000 POSTHOOK: query: SELECT dest_g2.* FROM dest_g2 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_g2 -POSTHOOK: Output: file:/tmp/amarsri/hive_2010-10-20_03-04-17_707_2990757298865083943/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-08-36_806_4005428358207331552/-mr-10000 POSTHOOK: Lineage: dest_g2.c1 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest_g2.c2 EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest_g2.c3 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/groupby7_map.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby7_map.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby7_map.q.out (working copy) @@ -117,7 +117,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -127,7 +127,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-3 Stats-Aggr Operator @@ -135,7 +135,7 @@ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-17-44_148_5547939144307537663/-mr-10004 + file:/tmp/sdong/hive_2011-02-09_02-11-45_142_3290369959540148031/-mr-10004 Reduce Output Operator key expressions: expr: _col0 @@ -179,7 +179,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-1 Move Operator @@ -189,7 +189,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-5 Stats-Aggr Operator @@ -216,11 +216,11 @@ PREHOOK: query: SELECT DEST1.* FROM DEST1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-17-57_997_7209819666869325866/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-11-54_469_724891262267989315/-mr-10000 POSTHOOK: query: SELECT DEST1.* FROM DEST1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-17-57_997_7209819666869325866/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-11-54_469_724891262267989315/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -537,11 +537,11 @@ PREHOOK: query: SELECT DEST2.* FROM DEST2 PREHOOK: type: QUERY PREHOOK: Input: default@dest2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-17-58_462_8744984340537397657/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-11-54_781_7649780697591429864/-mr-10000 POSTHOOK: query: SELECT DEST2.* FROM DEST2 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-17-58_462_8744984340537397657/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-11-54_781_7649780697591429864/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/join33.q.out =================================================================== --- ql/src/test/results/clientpositive/join33.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join33.q.out (working copy) @@ -69,7 +69,7 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/liyintang/hive_2010-11-08_19-01-43_620_231968462576941228/-mr-10002 + directory: file:/tmp/sdong/hive_2011-02-09_02-31-37_102_6301041335089212173/-mr-10002 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -85,9 +85,9 @@ Map Reduce Local Work Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/src [y] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [y] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -98,12 +98,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/liyintang/hive-1754/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1289268011 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -114,20 +114,20 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1289268011 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src + name: default.src + name: default.src Stage: Stage-1 Map Reduce Alias -> Map Operator Tree: - file:/tmp/liyintang/hive_2010-11-08_19-01-43_620_231968462576941228/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-31-37_102_6301041335089212173/-mr-10002 Select Operator expressions: expr: _col0 @@ -179,10 +179,10 @@ type: string Needs Tagging: true Path -> Alias: - file:/tmp/liyintang/hive_2010-11-08_19-01-43_620_231968462576941228/-mr-10002 [file:/tmp/liyintang/hive_2010-11-08_19-01-43_620_231968462576941228/-mr-10002] - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [z] + file:/tmp/sdong/hive_2011-02-09_02-31-37_102_6301041335089212173/-mr-10002 [file:/tmp/sdong/hive_2011-02-09_02-31-37_102_6301041335089212173/-mr-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [z] Path -> Partition: - file:/tmp/liyintang/hive_2010-11-08_19-01-43_620_231968462576941228/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-31-37_102_6301041335089212173/-mr-10002 Partition base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -198,7 +198,7 @@ columns _col0,_col1,_col5 columns.types string,string,string escape.delim \ - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -212,13 +212,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/liyintang/hive-1754/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289268000 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -229,16 +229,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/liyintang/hive-1754/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289268000 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Join Operator condition map: @@ -260,9 +260,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-01-43_620_231968462576941228/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-37_102_6301041335089212173/-ext-10000 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-01-43_620_231968462576941228/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-37_102_6301041335089212173/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -272,14 +272,14 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, string val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289271703 + transient_lastDdlTime 1297247497 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -288,7 +288,7 @@ Move Operator tables: replace: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-01-43_620_231968462576941228/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-37_102_6301041335089212173/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -298,19 +298,19 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, string val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289271703 + transient_lastDdlTime 1297247497 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 - tmp directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-01-43_620_231968462576941228/-ext-10001 + name: default.dest_j1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-37_102_6301041335089212173/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-01-43_620_231968462576941228/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-37_102_6301041335089212173/-ext-10000/ PREHOOK: query: INSERT OVERWRITE TABLE dest_j1 @@ -337,11 +337,11 @@ PREHOOK: query: select * from dest_j1 x order by x.key PREHOOK: type: QUERY PREHOOK: Input: default@dest_j1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_19-01-57_945_6756602084312764446/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-31-48_441_4377002012524028451/-mr-10000 POSTHOOK: query: select * from dest_j1 x order by x.key POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_j1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_19-01-57_945_6756602084312764446/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-31-48_441_4377002012524028451/-mr-10000 POSTHOOK: Lineage: dest_j1.key SIMPLE [(src1)x.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.val2 EXPRESSION [(src)y.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(srcpart)z.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/input_part2.q.out =================================================================== --- ql/src/test/results/clientpositive/input_part2.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input_part2.q.out (working copy) @@ -72,9 +72,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10004 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10004 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -84,14 +84,14 @@ columns.types int:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value, string hr, string ds} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288648993 + transient_lastDdlTime 1297247153 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -125,9 +125,9 @@ File Output Operator compressed: false GlobalTableId: 2 - directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10005 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10005 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10002/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10002/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -137,23 +137,23 @@ columns.types int:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest2 - name dest2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest2 + name default.dest2 serialization.ddl struct dest2 { i32 key, string value, string hr, string ds} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288648993 + transient_lastDdlTime 1297247153 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 TotalFiles: 1 GatherStats: true MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [srcpart] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [srcpart] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [srcpart] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [srcpart] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -167,13 +167,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288648959 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -184,17 +184,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288648959 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + 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 Partition base file name: hr=12 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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288648959 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -225,16 +225,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288648959 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Stage: Stage-6 Conditional Operator @@ -243,14 +243,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10004 - destination: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10004 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -260,28 +260,28 @@ columns.types int:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value, string hr, string ds} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288648993 + transient_lastDdlTime 1297247153 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - tmp directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10001 + name: default.dest1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10001 Stage: Stage-3 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10000/ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10004 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10004 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -292,22 +292,22 @@ columns.types int:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value, string hr, string ds} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288648993 + transient_lastDdlTime 1297247153 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10004 [pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10004] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10004 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10004] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10004 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10004 Partition base file name: -ext-10004 input format: org.apache.hadoop.mapred.TextInputFormat @@ -318,12 +318,12 @@ columns.types int:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value, string hr, string ds} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288648993 + transient_lastDdlTime 1297247153 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -334,15 +334,15 @@ columns.types int:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value, string hr, string ds} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288648993 + transient_lastDdlTime 1297247153 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - name: dest1 + name: default.dest1 + name: default.dest1 Stage: Stage-10 Conditional Operator @@ -351,14 +351,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10005 - destination: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10002 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10005 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10002 Stage: Stage-1 Move Operator tables: replace: true - source: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10002 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10002 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -368,28 +368,28 @@ columns.types int:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest2 - name dest2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest2 + name default.dest2 serialization.ddl struct dest2 { i32 key, string value, string hr, string ds} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288648993 + transient_lastDdlTime 1297247153 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 - tmp directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10003 + name: default.dest2 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10003 Stage: Stage-7 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10002/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10002/ Stage: Stage-8 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10005 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10005 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10002 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -400,22 +400,22 @@ columns.types int:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest2 - name dest2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest2 + name default.dest2 serialization.ddl struct dest2 { i32 key, string value, string hr, string ds} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288648993 + transient_lastDdlTime 1297247153 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10005 [pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10005] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10005 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10005] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-03-13_595_5630581345444413029/-ext-10005 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-53_378_2200728148988542020/-ext-10005 Partition base file name: -ext-10005 input format: org.apache.hadoop.mapred.TextInputFormat @@ -426,12 +426,12 @@ columns.types int:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest2 - name dest2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest2 + name default.dest2 serialization.ddl struct dest2 { i32 key, string value, string hr, string ds} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288648993 + transient_lastDdlTime 1297247153 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -442,15 +442,15 @@ columns.types int:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest2 - name dest2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest2 + name default.dest2 serialization.ddl struct dest2 { i32 key, string value, string hr, string ds} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288648993 + transient_lastDdlTime 1297247153 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 - name: dest2 + name: default.dest2 + name: default.dest2 PREHOOK: query: FROM srcpart @@ -480,11 +480,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 sort by key,value,ds,hr PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/sdong/hive_2010-11-01_15-03-28_969_7031925761511265432/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-25-59_241_5906550676539731635/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 sort by key,value,ds,hr POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/sdong/hive_2010-11-01_15-03-28_969_7031925761511265432/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-25-59_241_5906550676539731635/-mr-10000 POSTHOOK: Lineage: dest1.ds SIMPLE [(srcpart)srcpart.FieldSchema(name:ds, type:string, comment:null), ] POSTHOOK: Lineage: dest1.hr SIMPLE [(srcpart)srcpart.FieldSchema(name:hr, type:string, comment:null), ] POSTHOOK: Lineage: dest1.key EXPRESSION [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] @@ -580,11 +580,11 @@ PREHOOK: query: SELECT dest2.* FROM dest2 sort by key,value,ds,hr PREHOOK: type: QUERY PREHOOK: Input: default@dest2 -PREHOOK: Output: file:/tmp/sdong/hive_2010-11-01_15-03-32_345_5747407601917100746/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-26-02_723_267942468231110751/-mr-10000 POSTHOOK: query: SELECT dest2.* FROM dest2 sort by key,value,ds,hr POSTHOOK: type: QUERY POSTHOOK: Input: default@dest2 -POSTHOOK: Output: file:/tmp/sdong/hive_2010-11-01_15-03-32_345_5747407601917100746/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-26-02_723_267942468231110751/-mr-10000 POSTHOOK: Lineage: dest1.ds SIMPLE [(srcpart)srcpart.FieldSchema(name:ds, type:string, comment:null), ] POSTHOOK: Lineage: dest1.hr SIMPLE [(srcpart)srcpart.FieldSchema(name:hr, type:string, comment:null), ] POSTHOOK: Lineage: dest1.key EXPRESSION [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/input38.q.out =================================================================== --- ql/src/test/results/clientpositive/input38.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input38.q.out (working copy) @@ -67,7 +67,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Conditional Operator @@ -76,7 +76,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-30-15_451_6033211784807069966/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-22-44_280_6581265857275482936/-ext-10000 Stage: Stage-0 Move Operator @@ -86,7 +86,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -94,7 +94,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-30-15_451_6033211784807069966/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-22-44_280_6581265857275482936/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -102,7 +102,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM ( @@ -128,11 +128,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-30-21_896_7350116915883019392/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-22-49_157_884654927027517211/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-30-21_896_7350116915883019392/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-22-49_157_884654927027517211/-mr-10000 POSTHOOK: Lineage: dest1.key SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] 238 val_238 3 7 Index: ql/src/test/results/clientpositive/auto_join9.q.out =================================================================== --- ql/src/test/results/clientpositive/auto_join9.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/auto_join9.q.out (working copy) @@ -91,7 +91,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Local Work: Map Reduce Local Work @@ -103,7 +103,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -171,7 +171,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Local Work: Map Reduce Local Work @@ -246,7 +246,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM srcpart src1 JOIN src src2 ON (src1.key = src2.key) @@ -266,11 +266,11 @@ PREHOOK: query: SELECT sum(hash(dest1.key,dest1.value)) FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-15_16-50-49_730_4731952848139618200/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-32-02_596_4366455793853878511/-mr-10000 POSTHOOK: query: SELECT sum(hash(dest1.key,dest1.value)) FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-15_16-50-49_730_4731952848139618200/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-32-02_596_4366455793853878511/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(srcpart)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SIMPLE [(src)src2.FieldSchema(name:value, type:string, comment:default), ] 101861029915 Index: ql/src/test/results/clientpositive/mapreduce5.q.out =================================================================== --- ql/src/test/results/clientpositive/mapreduce5.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/mapreduce5.q.out (working copy) @@ -85,7 +85,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -95,7 +95,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -124,11 +124,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-03-35_392_2576146699023530567/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-05-35_725_2522751116888817627/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-03-35_392_2576146699023530567/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-05-35_725_2522751116888817627/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.one EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.ten EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/groupby3_noskew.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby3_noskew.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby3_noskew.q.out (working copy) @@ -119,7 +119,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -129,7 +129,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -175,11 +175,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-15-28_241_6736826911531146786/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-09-29_694_6425348576146106958/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-15-28_241_6736826911531146786/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-09-29_694_6425348576146106958/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c2 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c3 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/stats12.q.out =================================================================== --- ql/src/test/results/clientpositive/stats12.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/stats12.q.out (working copy) @@ -43,7 +43,7 @@ POSTHOOK: Lineage: analyze_srcpart PARTITION(ds=2008-04-09,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: analyze_srcpart PARTITION(ds=2008-04-09,hr=12).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] ABSTRACT SYNTAX TREE: - (TOK_ANALYZE (TOK_TABTYPE analyze_srcpart (TOK_PARTSPEC (TOK_PARTVAL ds '2008-04-08') (TOK_PARTVAL hr)))) + (TOK_ANALYZE (TOK_TAB analyze_srcpart (TOK_PARTSPEC (TOK_PARTVAL ds '2008-04-08') (TOK_PARTVAL hr)))) STAGE DEPENDENCIES: Stage-0 is a root stage @@ -60,10 +60,10 @@ GatherStats: true Needs Tagging: false Path -> Alias: - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=11 [analyze_srcpart] - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=12 [analyze_srcpart] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=11 [analyze_srcpart] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=12 [analyze_srcpart] Path -> Partition: - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -77,13 +77,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart - name analyze_srcpart + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=11 + name default.analyze_srcpart partition_columns ds/hr serialization.ddl struct analyze_srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1290146533 + transient_lastDdlTime 1297251991 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -94,17 +94,17 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart - name analyze_srcpart + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart + name default.analyze_srcpart partition_columns ds/hr serialization.ddl struct analyze_srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1290146533 + transient_lastDdlTime 1297251991 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: analyze_srcpart - name: analyze_srcpart - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=12 + name: default.analyze_srcpart + name: default.analyze_srcpart + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -118,13 +118,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart - name analyze_srcpart + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=12 + name default.analyze_srcpart partition_columns ds/hr serialization.ddl struct analyze_srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1290146533 + transient_lastDdlTime 1297251991 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -135,16 +135,16 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart - name analyze_srcpart + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart + name default.analyze_srcpart partition_columns ds/hr serialization.ddl struct analyze_srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1290146533 + transient_lastDdlTime 1297251991 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: analyze_srcpart - name: analyze_srcpart + name: default.analyze_srcpart + name: default.analyze_srcpart Stage: Stage-1 Stats-Aggr Operator @@ -190,7 +190,7 @@ ds string hr string -Detailed Table Information Table(tableName:analyze_srcpart, dbName:default, owner:null, createTime:1290146533, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{numPartitions=2, numFiles=2, transient_lastDdlTime=1290146557, numRows=1000, totalSize=11624}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:analyze_srcpart, dbName:default, owner:null, createTime:1297251991, lastAccessTime:1297250836, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{numPartitions=2, numFiles=2, transient_lastDdlTime=1297252002, numRows=500, totalSize=11624}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) PREHOOK: query: desc extended analyze_srcpart partition (ds='2008-04-08', hr=11) PREHOOK: type: DESCTABLE POSTHOOK: query: desc extended analyze_srcpart partition (ds='2008-04-08', hr=11) @@ -208,7 +208,7 @@ ds string hr string -Detailed Partition Information Partition(values:[2008-04-08, 11], dbName:default, tableName:analyze_srcpart, createTime:1290146549, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=11, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1290146557, numRows=500, totalSize=5812}) +Detailed Partition Information Partition(values:[2008-04-08, 11], dbName:default, tableName:analyze_srcpart, createTime:1297251997, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=11, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1297252002, numRows=500, totalSize=5812}) PREHOOK: query: desc extended analyze_srcpart partition (ds='2008-04-08', hr=12) PREHOOK: type: DESCTABLE POSTHOOK: query: desc extended analyze_srcpart partition (ds='2008-04-08', hr=12) @@ -226,7 +226,7 @@ ds string hr string -Detailed Partition Information Partition(values:[2008-04-08, 12], dbName:default, tableName:analyze_srcpart, createTime:1290146550, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=12, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1290146557, numRows=500, totalSize=5812}) +Detailed Partition Information Partition(values:[2008-04-08, 12], dbName:default, tableName:analyze_srcpart, createTime:1297251997, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=12, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1297252002, totalSize=5812, numRows=0}) PREHOOK: query: desc extended analyze_srcpart partition (ds='2008-04-09', hr=11) PREHOOK: type: DESCTABLE POSTHOOK: query: desc extended analyze_srcpart partition (ds='2008-04-09', hr=11) @@ -244,7 +244,7 @@ ds string hr string -Detailed Partition Information Partition(values:[2008-04-09, 11], dbName:default, tableName:analyze_srcpart, createTime:1290146550, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-09/hr=11, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{transient_lastDdlTime=1290146550}) +Detailed Partition Information Partition(values:[2008-04-09, 11], dbName:default, tableName:analyze_srcpart, createTime:1297251997, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-09/hr=11, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{transient_lastDdlTime=1297251997}) PREHOOK: query: desc extended analyze_srcpart partition (ds='2008-04-09', hr=12) PREHOOK: type: DESCTABLE POSTHOOK: query: desc extended analyze_srcpart partition (ds='2008-04-09', hr=12) @@ -262,4 +262,4 @@ ds string hr string -Detailed Partition Information Partition(values:[2008-04-09, 12], dbName:default, tableName:analyze_srcpart, createTime:1290146550, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-09/hr=12, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{transient_lastDdlTime=1290146550}) +Detailed Partition Information Partition(values:[2008-04-09, 12], dbName:default, tableName:analyze_srcpart, createTime:1297251997, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-09/hr=12, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{transient_lastDdlTime=1297251997}) Index: ql/src/test/results/clientpositive/auto_join19.q.out =================================================================== --- ql/src/test/results/clientpositive/auto_join19.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/auto_join19.q.out (working copy) @@ -93,7 +93,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Local Work: Map Reduce Local Work @@ -105,7 +105,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -173,7 +173,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Local Work: Map Reduce Local Work @@ -248,7 +248,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM srcpart src1 JOIN src src2 ON (src1.key = src2.key) @@ -276,11 +276,11 @@ PREHOOK: query: SELECT sum(hash(dest1.key,dest1.value)) FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-15_16-47-03_485_5529985135227819485/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-26-52_602_8268405871897715700/-mr-10000 POSTHOOK: query: SELECT sum(hash(dest1.key,dest1.value)) FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-15_16-47-03_485_5529985135227819485/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-26-52_602_8268405871897715700/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(srcpart)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SIMPLE [(src)src2.FieldSchema(name:value, type:string, comment:default), ] 407444119660 Index: ql/src/test/results/clientpositive/groupby4_map.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby4_map.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby4_map.q.out (working copy) @@ -61,7 +61,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -71,7 +71,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -89,10 +89,10 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-15-47_965_3140661049905924445/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-09-54_366_6064073086914849149/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-15-47_965_3140661049905924445/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-09-54_366_6064073086914849149/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.null, ] 500 Index: ql/src/test/results/clientpositive/router_join_ppr.q.out =================================================================== --- ql/src/test/results/clientpositive/router_join_ppr.q.out (revision 1068243) +++ 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/hive-trunk/build/ql/test/data/warehouse/src [a] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [b] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [b] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [b] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [b] + 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] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/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/hive-trunk/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389296 + transient_lastDdlTime 1297243148 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/hive-trunk/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389296 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + 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 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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + 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 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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + 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 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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -268,16 +268,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Join Operator condition map: @@ -309,9 +309,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-10-29_16-24-29_880_2729403633177554645/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-26-47_177_2201943698525097840/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-10-29_16-24-29_880_2729403633177554645/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-26-47_177_2201943698525097840/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -341,7 +341,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_2010-10-29_16-24-30_041_1642456148331342612/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-26-47_343_2527656629451183219/-mr-10000 POSTHOOK: query: FROM src a RIGHT OUTER JOIN @@ -355,7 +355,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_2010-10-29_16-24-30_041_1642456148331342612/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-26-47_343_2527656629451183219/-mr-10000 17 val_17 17 val_17 17 val_17 17 val_17 18 val_18 18 val_18 @@ -445,11 +445,11 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/src [b] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] - pfile:/data/users/sdong/www/hive-trunk/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/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] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -460,12 +460,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/hive-trunk/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389296 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -476,16 +476,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/hive-trunk/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389296 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + 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 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -499,13 +499,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -516,17 +516,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -540,13 +540,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -557,16 +557,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Join Operator condition map: @@ -595,9 +595,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-10-29_16-24-35_634_7794037076839772421/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-26-52_010_7881949405325107195/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-10-29_16-24-35_634_7794037076839772421/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-26-52_010_7881949405325107195/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -625,7 +625,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_2010-10-29_16-24-35_776_7185381771912949589/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-26-52_166_976867617982473959/-mr-10000 POSTHOOK: query: FROM srcpart a RIGHT OUTER JOIN @@ -637,7 +637,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_2010-10-29_16-24-35_776_7185381771912949589/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-26-52_166_976867617982473959/-mr-10000 17 val_17 17 val_17 17 val_17 17 val_17 18 val_18 18 val_18 @@ -724,11 +724,11 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/src [a] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [b] - pfile:/data/users/sdong/www/hive-trunk/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/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] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -739,12 +739,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/hive-trunk/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389296 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -755,16 +755,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/hive-trunk/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389296 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + 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 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -778,13 +778,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -795,17 +795,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -819,13 +819,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -836,16 +836,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Join Operator condition map: @@ -874,9 +874,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-10-29_16-24-40_682_4113709267275252747/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-26-56_306_5488216797804818700/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-10-29_16-24-40_682_4113709267275252747/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-26-56_306_5488216797804818700/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -904,7 +904,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_2010-10-29_16-24-40_825_2669951250781595832/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-26-56_460_1369255661815529055/-mr-10000 POSTHOOK: query: FROM src a RIGHT OUTER JOIN @@ -916,7 +916,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_2010-10-29_16-24-40_825_2669951250781595832/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-26-56_460_1369255661815529055/-mr-10000 17 val_17 17 val_17 17 val_17 17 val_17 18 val_18 18 val_18 @@ -1003,13 +1003,13 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/src [b] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [a] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [a] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [a] + 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] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -1020,12 +1020,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/hive-trunk/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389296 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1036,16 +1036,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/hive-trunk/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389296 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + 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 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1059,13 +1059,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1076,17 +1076,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1100,13 +1100,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1117,17 +1117,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + 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 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1141,13 +1141,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1158,17 +1158,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1182,13 +1182,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1199,16 +1199,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Join Operator condition map: @@ -1237,9 +1237,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-10-29_16-24-45_779_8110194100957996087/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-27-00_625_7249805868038696711/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-10-29_16-24-45_779_8110194100957996087/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-27-00_625_7249805868038696711/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1269,7 +1269,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_2010-10-29_16-24-45_957_3952542311322296389/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-27-00_783_4195299357509048695/-mr-10000 POSTHOOK: query: FROM srcpart a RIGHT OUTER JOIN @@ -1283,7 +1283,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_2010-10-29_16-24-45_957_3952542311322296389/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-27-00_783_4195299357509048695/-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/groupby2_map_multi_distinct.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby2_map_multi_distinct.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby2_map_multi_distinct.q.out (working copy) @@ -113,7 +113,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -123,7 +123,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -147,11 +147,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/amarsri/hive_2010-10-20_03-03-34_053_4042312084657375262/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-08-06_710_3155217134177498648/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/amarsri/hive_2010-10-20_03-03-34_053_4042312084657375262/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-08-06_710_3155217134177498648/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c2 EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c3 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/join7.q.out =================================================================== --- ql/src/test/results/clientpositive/join7.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join7.q.out (working copy) @@ -214,7 +214,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -224,7 +224,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -281,11 +281,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-43-58_936_1523026899455151688/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-34-37_800_2841078597681320286/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-43-58_936_1523026899455151688/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-34-37_800_2841078597681320286/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c2 SIMPLE [(src)src1.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c3 EXPRESSION [(src)src2.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/groupby7_map_skew.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby7_map_skew.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby7_map_skew.q.out (working copy) @@ -108,7 +108,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-18-00_200_2425264639686556770/-mr-10004 + file:/tmp/sdong/hive_2011-02-09_02-11-55_557_5721858215520486500/-mr-10004 Reduce Output Operator key expressions: expr: _col0 @@ -152,7 +152,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -162,7 +162,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-4 Stats-Aggr Operator @@ -170,7 +170,7 @@ Stage: Stage-5 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-18-00_200_2425264639686556770/-mr-10005 + file:/tmp/sdong/hive_2011-02-09_02-11-55_557_5721858215520486500/-mr-10005 Reduce Output Operator key expressions: expr: _col0 @@ -203,7 +203,7 @@ Stage: Stage-6 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-18-00_200_2425264639686556770/-mr-10006 + file:/tmp/sdong/hive_2011-02-09_02-11-55_557_5721858215520486500/-mr-10006 Reduce Output Operator key expressions: expr: _col0 @@ -247,7 +247,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-1 Move Operator @@ -257,7 +257,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-7 Stats-Aggr Operator @@ -284,11 +284,11 @@ PREHOOK: query: SELECT DEST1.* FROM DEST1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-18-21_775_6919978381667314926/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-12-11_054_2017323100006306558/-mr-10000 POSTHOOK: query: SELECT DEST1.* FROM DEST1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-18-21_775_6919978381667314926/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-12-11_054_2017323100006306558/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -605,11 +605,11 @@ PREHOOK: query: SELECT DEST2.* FROM DEST2 PREHOOK: type: QUERY PREHOOK: Input: default@dest2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-18-22_250_5639917931903539486/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-12-11_354_6385742422335973507/-mr-10000 POSTHOOK: query: SELECT DEST2.* FROM DEST2 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-18-22_250_5639917931903539486/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-12-11_354_6385742422335973507/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/groupby8_noskew.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby8_noskew.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby8_noskew.q.out (working copy) @@ -85,7 +85,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-19-36_874_4018574469529585954/-mr-10004 + file:/tmp/sdong/hive_2011-02-09_02-13-18_172_7194525077908084349/-mr-10004 Reduce Output Operator key expressions: expr: _col0 @@ -129,7 +129,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -139,7 +139,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-4 Stats-Aggr Operator @@ -147,7 +147,7 @@ Stage: Stage-5 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-19-36_874_4018574469529585954/-mr-10005 + file:/tmp/sdong/hive_2011-02-09_02-13-18_172_7194525077908084349/-mr-10005 Reduce Output Operator key expressions: expr: _col0 @@ -191,7 +191,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-1 Move Operator @@ -201,7 +201,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-6 Stats-Aggr Operator @@ -228,11 +228,11 @@ PREHOOK: query: SELECT DEST1.* FROM DEST1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-19-53_559_1612069899469209557/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-13-30_558_2902222226182927884/-mr-10000 POSTHOOK: query: SELECT DEST1.* FROM DEST1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-19-53_559_1612069899469209557/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-13-30_558_2902222226182927884/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -549,11 +549,11 @@ PREHOOK: query: SELECT DEST2.* FROM DEST2 PREHOOK: type: QUERY PREHOOK: Input: default@dest2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-19-53_978_3131301998051508911/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-13-30_856_6708979960026032461/-mr-10000 POSTHOOK: query: SELECT DEST2.* FROM DEST2 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-19-53_978_3131301998051508911/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-13-30_856_6708979960026032461/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/input33.q.out =================================================================== --- ql/src/test/results/clientpositive/input33.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input33.q.out (working copy) @@ -100,7 +100,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -110,7 +110,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -149,11 +149,11 @@ PREHOOK: query: SELECT * FROM dest1 SORT BY key, value PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/jssarma/hive_2010-10-04_16-33-13_584_9168589882209549331/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-22-18_407_5805640737238740114/-mr-10000 POSTHOOK: query: SELECT * FROM dest1 SORT BY key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/jssarma/hive_2010-10-04_16-33-13_584_9168589882209549331/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-22-18_407_5805640737238740114/-mr-10000 POSTHOOK: Lineage: dest1.key SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), ] 1 105_105 Index: ql/src/test/results/clientpositive/auto_join4.q.out =================================================================== --- ql/src/test/results/clientpositive/auto_join4.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/auto_join4.q.out (working copy) @@ -156,7 +156,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Local Work: Map Reduce Local Work @@ -168,7 +168,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -289,7 +289,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM ( @@ -331,11 +331,11 @@ PREHOOK: query: SELECT sum(hash(dest1.c1,dest1.c2,dest1.c3,dest1.c4)) FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-15_16-49-57_379_6521114373353088936/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-30-52_165_7125875542236318458/-mr-10000 POSTHOOK: query: SELECT sum(hash(dest1.c1,dest1.c2,dest1.c3,dest1.c4)) FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-15_16-49-57_379_6521114373353088936/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-30-52_165_7125875542236318458/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c2 SIMPLE [(src)src1.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c3 EXPRESSION [(src)src2.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/auto_join14.q.out =================================================================== --- ql/src/test/results/clientpositive/auto_join14.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/auto_join14.q.out (working copy) @@ -99,7 +99,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Local Work: Map Reduce Local Work @@ -111,7 +111,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -187,7 +187,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Local Work: Map Reduce Local Work @@ -266,7 +266,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM src JOIN srcpart ON src.key = srcpart.key AND srcpart.ds = '2008-04-08' and src.key > 100 @@ -288,11 +288,11 @@ PREHOOK: query: SELECT sum(hash(dest1.c1,dest1.c2)) FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/data/users/liyintang/hive-1642/build/ql/scratchdir/hive_2010-11-15_16-45-41_871_1477229060958933224/-mr-10000 +PREHOOK: Output: file:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-25-25_058_2183601128581583655/-mr-10000 POSTHOOK: query: SELECT sum(hash(dest1.c1,dest1.c2)) FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/data/users/liyintang/hive-1642/build/ql/scratchdir/hive_2010-11-15_16-45-41_871_1477229060958933224/-mr-10000 +POSTHOOK: Output: file:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-25-25_058_2183601128581583655/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c2 SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] 404554174174 Index: ql/src/test/results/clientpositive/bucket1.q.out =================================================================== --- ql/src/test/results/clientpositive/bucket1.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/bucket1.q.out (working copy) @@ -47,9 +47,9 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src [src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [src] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -60,12 +60,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284504429 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -76,15 +76,15 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284504429 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src + name: default.src + name: default.src Reduce Operator Tree: Extract Select Operator @@ -97,9 +97,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_15-50-02_223_4269812662234645087/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-22_591_1185495225639044979/-ext-10000 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_15-50-02_223_4269812662234645087/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-22_591_1185495225639044979/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -110,14 +110,14 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/bucket1_1 - name bucket1_1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucket1_1 + name default.bucket1_1 serialization.ddl struct bucket1_1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504602 + transient_lastDdlTime 1297244842 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucket1_1 + name: default.bucket1_1 TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -126,7 +126,7 @@ Move Operator tables: replace: true - source: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_15-50-02_223_4269812662234645087/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-22_591_1185495225639044979/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -137,19 +137,19 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/bucket1_1 - name bucket1_1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucket1_1 + name default.bucket1_1 serialization.ddl struct bucket1_1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504602 + transient_lastDdlTime 1297244842 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucket1_1 - tmp directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_15-50-02_223_4269812662234645087/-ext-10001 + name: default.bucket1_1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-22_591_1185495225639044979/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_15-50-02_223_4269812662234645087/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-22_591_1185495225639044979/-ext-10000/ PREHOOK: query: insert overwrite table bucket1_1 @@ -167,11 +167,11 @@ PREHOOK: query: select * from bucket1_1 order by key PREHOOK: type: QUERY PREHOOK: Input: default@bucket1_1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_15-50-08_787_7479988112336189751/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-47-27_391_8598423506482332308/-mr-10000 POSTHOOK: query: select * from bucket1_1 order by key POSTHOOK: type: QUERY POSTHOOK: Input: default@bucket1_1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_15-50-08_787_7479988112336189751/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-47-27_391_8598423506482332308/-mr-10000 POSTHOOK: Lineage: bucket1_1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: bucket1_1.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] 0 val_0 Index: ql/src/test/results/clientpositive/groupby1_map.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby1_map.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby1_map.q.out (working copy) @@ -83,7 +83,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -93,7 +93,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -112,11 +112,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-13-44_564_8321546219919797444/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-07-16_787_1108333905163933731/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-13-44_564_8321546219919797444/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-07-16_787_1108333905163933731/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] 0 0.0 Index: ql/src/test/results/clientpositive/input42.q.out =================================================================== --- ql/src/test/results/clientpositive/input42.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input42.q.out (working copy) @@ -54,10 +54,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/njain/hive3/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] - pfile:/data/users/njain/hive3/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-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] Path -> Partition: - pfile:/data/users/njain/hive3/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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/njain/hive3/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296766190 + transient_lastDdlTime 1297243142 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/njain/hive3/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296766190 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/njain/hive3/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 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/njain/hive3/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296766190 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -129,24 +129,24 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive3/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296766190 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/njain/hive_2011-02-03_12-49-59_467_3796150470392177289/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_02-23-56_235_9113551339988607881/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/njain/hive_2011-02-03_12-49-59_467_3796150470392177289/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_02-23-56_235_9113551339988607881/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -167,12 +167,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/njain/hive_2011-02-03_12-49-59_801_525167415497485863/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-23-56_367_3146543953116467044/-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/njain/hive_2011-02-03_12-49-59_801_525167415497485863/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-23-56_367_3146543953116467044/-mr-10000 0 val_0 2008-04-08 11 0 val_0 2008-04-08 11 0 val_0 2008-04-08 11 @@ -1234,10 +1234,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/njain/hive3/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] - pfile:/data/users/njain/hive3/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-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] Path -> Partition: - pfile:/data/users/njain/hive3/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -1251,13 +1251,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/njain/hive3/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296766190 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1268,17 +1268,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/njain/hive3/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296766190 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/njain/hive3/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1292,13 +1292,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/njain/hive3/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296766190 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1309,24 +1309,24 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive3/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296766190 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/njain/hive_2011-02-03_12-50-03_142_654060154054043640/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_02-23-59_973_2583905381632312980/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/njain/hive_2011-02-03_12-50-03_142_654060154054043640/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_02-23-59_973_2583905381632312980/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1347,12 +1347,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/njain/hive_2011-02-03_12-50-03_306_2508303776661842458/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-24-00_106_4861687298561163918/-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/njain/hive_2011-02-03_12-50-03_306_2508303776661842458/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-24-00_106_4861687298561163918/-mr-10000 0 val_0 2008-04-08 11 0 val_0 2008-04-08 11 0 val_0 2008-04-08 11 @@ -1787,10 +1787,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/njain/hive3/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] - pfile:/data/users/njain/hive3/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-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] Path -> Partition: - pfile:/data/users/njain/hive3/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -1804,13 +1804,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/njain/hive3/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296766190 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1821,17 +1821,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/njain/hive3/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296766190 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/njain/hive3/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1845,13 +1845,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/njain/hive3/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296766190 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1862,24 +1862,24 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive3/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296766190 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/njain/hive_2011-02-03_12-50-06_477_8143234486934165536/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_02-24-03_766_8480962602619000942/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/njain/hive_2011-02-03_12-50-06_477_8143234486934165536/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_02-24-03_766_8480962602619000942/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1900,12 +1900,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/njain/hive_2011-02-03_12-50-06_625_1807918217728904887/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-24-03_899_3167151909420803939/-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/njain/hive_2011-02-03_12-50-06_625_1807918217728904887/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-24-03_899_3167151909420803939/-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/load_dyn_part8.q.out =================================================================== --- ql/src/test/results/clientpositive/load_dyn_part8.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/load_dyn_part8.q.out (working copy) @@ -20,7 +20,7 @@ ds string hr string -Detailed Table Information Table(tableName:nzhang_part8, dbName:default, owner:null, createTime:1289454074, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/nzhang_part8, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{transient_lastDdlTime=1289454074}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:nzhang_part8, dbName:default, owner:null, createTime:1297249244, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_part8, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{transient_lastDdlTime=1297249244}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) PREHOOK: query: explain extended from srcpart insert overwrite table nzhang_part8 partition (ds, hr) select key, value, ds, hr where ds <= '2008-04-08' @@ -68,9 +68,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-41-14_261_7863187372625616814/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-00-44_832_948236849248519326/-ext-10000 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-41-14_261_7863187372625616814/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-00-44_832_948236849248519326/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -80,15 +80,15 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/nzhang_part8 - name nzhang_part8 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_part8 + name default.nzhang_part8 partition_columns ds/hr serialization.ddl struct nzhang_part8 { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289454074 + transient_lastDdlTime 1297249244 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part8 + name: default.nzhang_part8 TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -109,10 +109,10 @@ File Output Operator compressed: false GlobalTableId: 2 - directory: pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-41-14_261_7863187372625616814/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-00-44_832_948236849248519326/-ext-10002 NumFilesPerFileSink: 1 Static Partition Specification: ds=2008-12-31/ - Stats Publishing Key Prefix: pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-41-14_261_7863187372625616814/-ext-10002/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-00-44_832_948236849248519326/-ext-10002/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -122,26 +122,26 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/nzhang_part8 - name nzhang_part8 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_part8 + name default.nzhang_part8 partition_columns ds/hr serialization.ddl struct nzhang_part8 { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289454074 + transient_lastDdlTime 1297249244 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part8 + name: default.nzhang_part8 TotalFiles: 1 GatherStats: true MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [srcpart] - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [srcpart] - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [srcpart] - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [srcpart] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [srcpart] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [srcpart] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [srcpart] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [srcpart] Path -> Partition: - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -155,13 +155,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/njain/hive1/hive1/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289453629 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -172,17 +172,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/njain/hive1/hive1/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289453629 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -196,13 +196,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/njain/hive1/hive1/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289453629 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -213,17 +213,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/njain/hive1/hive1/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289453629 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + 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 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -237,13 +237,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/njain/hive1/hive1/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289453629 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -254,17 +254,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/njain/hive1/hive1/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289453629 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -278,13 +278,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/njain/hive1/hive1/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289453629 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -295,16 +295,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/njain/hive1/hive1/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289453629 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Stage: Stage-0 Move Operator @@ -313,7 +313,7 @@ ds hr replace: true - source: pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-41-14_261_7863187372625616814/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-00-44_832_948236849248519326/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -323,20 +323,20 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/nzhang_part8 - name nzhang_part8 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_part8 + name default.nzhang_part8 partition_columns ds/hr serialization.ddl struct nzhang_part8 { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289454074 + transient_lastDdlTime 1297249244 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part8 - tmp directory: pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-41-14_261_7863187372625616814/-ext-10001 + name: default.nzhang_part8 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-00-44_832_948236849248519326/-ext-10001 Stage: Stage-3 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-41-14_261_7863187372625616814/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-00-44_832_948236849248519326/-ext-10000/ Stage: Stage-1 Move Operator @@ -345,7 +345,7 @@ ds 2008-12-31 hr replace: true - source: pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-41-14_261_7863187372625616814/-ext-10002 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-00-44_832_948236849248519326/-ext-10002 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -355,20 +355,20 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/nzhang_part8 - name nzhang_part8 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_part8 + name default.nzhang_part8 partition_columns ds/hr serialization.ddl struct nzhang_part8 { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289454074 + transient_lastDdlTime 1297249244 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part8 - tmp directory: pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-41-14_261_7863187372625616814/-ext-10003 + name: default.nzhang_part8 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-00-44_832_948236849248519326/-ext-10003 Stage: Stage-4 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-41-14_261_7863187372625616814/-ext-10002/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-00-44_832_948236849248519326/-ext-10002/ PREHOOK: query: from srcpart @@ -423,13 +423,14 @@ PREHOOK: Input: default@nzhang_part8@ds=2008-04-08/hr=12 PREHOOK: Input: default@nzhang_part8@ds=2008-12-31/hr=11 PREHOOK: Input: default@nzhang_part8@ds=2008-12-31/hr=12 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-10_21-41-31_064_3531256909339477988/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-00-54_401_2128260028945282297/-mr-10000 POSTHOOK: query: select * from nzhang_part8 where ds is not null and hr is not null POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_part8@ds=2008-04-08/hr=11 POSTHOOK: Input: default@nzhang_part8@ds=2008-04-08/hr=12 POSTHOOK: Input: default@nzhang_part8@ds=2008-12-31/hr=11 POSTHOOK: Input: default@nzhang_part8@ds=2008-12-31/hr=12 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-00-54_401_2128260028945282297/-mr-10000 POSTHOOK: Lineage: nzhang_part8 PARTITION(ds=2008-04-08,hr=11).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part8 PARTITION(ds=2008-04-08,hr=11).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part8 PARTITION(ds=2008-04-08,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/sample9.q.out =================================================================== --- ql/src/test/results/clientpositive/sample9.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/sample9.q.out (working copy) @@ -48,9 +48,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/nzhang/hive_2010-09-14_17-25-46_949_6966788619794916428/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-28-56_230_336289102541950026/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/nzhang/hive_2010-09-14_17-25-46_949_6966788619794916428/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-28-56_230_336289102541950026/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -63,9 +63,9 @@ MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt [s:a] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt [s:a] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt Partition base file name: srcbucket0.txt input format: org.apache.hadoop.mapred.TextInputFormat @@ -77,12 +77,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket - name srcbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket + name default.srcbucket serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504426 + transient_lastDdlTime 1297243146 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -94,15 +94,15 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket - name srcbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket + name default.srcbucket serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504426 + transient_lastDdlTime 1297243146 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket - name: srcbucket + name: default.srcbucket + name: default.srcbucket Stage: Stage-0 Fetch Operator @@ -113,12 +113,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/nzhang/hive_2010-09-14_17-25-47_211_4954933153324523917/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-56_421_1132485404918285913/-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/nzhang/hive_2010-09-14_17-25-47_211_4954933153324523917/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-56_421_1132485404918285913/-mr-10000 474 val_475 62 val_63 468 val_469 Index: ql/src/test/results/clientpositive/quote1.q.out =================================================================== --- ql/src/test/results/clientpositive/quote1.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/quote1.q.out (working copy) @@ -58,7 +58,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Conditional Operator @@ -67,7 +67,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-19-37_754_2432298277175258919/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-24-19_839_4271444359518834045/-ext-10000 Stage: Stage-0 Move Operator @@ -79,7 +79,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -87,7 +87,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-19-37_754_2432298277175258919/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-24-19_839_4271444359518834045/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -95,7 +95,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: EXPLAIN @@ -162,11 +162,11 @@ PREHOOK: query: SELECT `int`.`location`, `int`.`type`, `int`.`table` FROM dest1 `int` WHERE `int`.`table` = '2008-04-08' PREHOOK: type: QUERY PREHOOK: Input: default@dest1@table=2008-04-08 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-19-44_273_5740940772723274466/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-24-24_938_4318668711105623789/-mr-10000 POSTHOOK: query: SELECT `int`.`location`, `int`.`type`, `int`.`table` FROM dest1 `int` WHERE `int`.`table` = '2008-04-08' POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1@table=2008-04-08 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-19-44_273_5740940772723274466/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-24-24_938_4318668711105623789/-mr-10000 POSTHOOK: Lineage: dest1 PARTITION(table=2008-04-08).location EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1 PARTITION(table=2008-04-08).type SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] 238 val_238 2008-04-08 Index: ql/src/test/results/clientpositive/notable_alias2.q.out =================================================================== --- ql/src/test/results/clientpositive/notable_alias2.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/notable_alias2.q.out (working copy) @@ -95,7 +95,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -105,7 +105,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -127,11 +127,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-10-50_818_5788376518261161162/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-12-03_207_8962121306828742811/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-10-50_818_5788376518261161162/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-12-03_207_8962121306828742811/-mr-10000 POSTHOOK: Lineage: dest1.dummy SIMPLE [] POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.null, ] Index: ql/src/test/results/clientpositive/columnarserde_create_shortcut.q.out =================================================================== --- ql/src/test/results/clientpositive/columnarserde_create_shortcut.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/columnarserde_create_shortcut.q.out (working copy) @@ -65,7 +65,7 @@ input format: org.apache.hadoop.hive.ql.io.RCFileInputFormat output format: org.apache.hadoop.hive.ql.io.RCFileOutputFormat serde: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe - name: columnarserde_create_shortcut + name: default.columnarserde_create_shortcut Stage: Stage-0 Move Operator @@ -75,7 +75,7 @@ input format: org.apache.hadoop.hive.ql.io.RCFileInputFormat output format: org.apache.hadoop.hive.ql.io.RCFileOutputFormat serde: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe - name: columnarserde_create_shortcut + name: default.columnarserde_create_shortcut Stage: Stage-2 Stats-Aggr Operator @@ -99,11 +99,11 @@ PREHOOK: query: SELECT columnarserde_create_shortcut.* FROM columnarserde_create_shortcut DISTRIBUTE BY 1 PREHOOK: type: QUERY PREHOOK: Input: default@columnarserde_create_shortcut -PREHOOK: Output: file:/tmp/thiruvel/hive_2010-10-11_05-04-09_802_1487672755503813438/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-58-33_801_8510885503777292334/-mr-10000 POSTHOOK: query: SELECT columnarserde_create_shortcut.* FROM columnarserde_create_shortcut DISTRIBUTE BY 1 POSTHOOK: type: QUERY POSTHOOK: Input: default@columnarserde_create_shortcut -POSTHOOK: Output: file:/tmp/thiruvel/hive_2010-10-11_05-04-09_802_1487672755503813438/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-58-33_801_8510885503777292334/-mr-10000 POSTHOOK: Lineage: columnarserde_create_shortcut.a SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lint, type:array, comment:from deserializer), ] POSTHOOK: Lineage: columnarserde_create_shortcut.b SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lstring, type:array, comment:from deserializer), ] POSTHOOK: Lineage: columnarserde_create_shortcut.c SIMPLE [(src_thrift)src_thrift.FieldSchema(name:mstringstring, type:map, comment:from deserializer), ] @@ -123,11 +123,11 @@ PREHOOK: query: SELECT columnarserde_create_shortcut.a[0], columnarserde_create_shortcut.b[0], columnarserde_create_shortcut.c['key2'], columnarserde_create_shortcut.d, columnarserde_create_shortcut.e FROM columnarserde_create_shortcut DISTRIBUTE BY 1 PREHOOK: type: QUERY PREHOOK: Input: default@columnarserde_create_shortcut -PREHOOK: Output: file:/tmp/thiruvel/hive_2010-10-11_05-04-22_954_5642646028069530983/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-58-41_081_90473828035440655/-mr-10000 POSTHOOK: query: SELECT columnarserde_create_shortcut.a[0], columnarserde_create_shortcut.b[0], columnarserde_create_shortcut.c['key2'], columnarserde_create_shortcut.d, columnarserde_create_shortcut.e FROM columnarserde_create_shortcut DISTRIBUTE BY 1 POSTHOOK: type: QUERY POSTHOOK: Input: default@columnarserde_create_shortcut -POSTHOOK: Output: file:/tmp/thiruvel/hive_2010-10-11_05-04-22_954_5642646028069530983/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-58-41_081_90473828035440655/-mr-10000 POSTHOOK: Lineage: columnarserde_create_shortcut.a SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lint, type:array, comment:from deserializer), ] POSTHOOK: Lineage: columnarserde_create_shortcut.b SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lstring, type:array, comment:from deserializer), ] POSTHOOK: Lineage: columnarserde_create_shortcut.c SIMPLE [(src_thrift)src_thrift.FieldSchema(name:mstringstring, type:map, comment:from deserializer), ] @@ -187,11 +187,11 @@ PREHOOK: query: SELECT columnShortcutTable.* FROM columnShortcutTable PREHOOK: type: QUERY PREHOOK: Input: default@columnshortcuttable -PREHOOK: Output: file:/tmp/thiruvel/hive_2010-10-11_05-04-40_597_3555575733389397838/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-58-51_033_1299290659037381221/-mr-10000 POSTHOOK: query: SELECT columnShortcutTable.* FROM columnShortcutTable POSTHOOK: type: QUERY POSTHOOK: Input: default@columnshortcuttable -POSTHOOK: Output: file:/tmp/thiruvel/hive_2010-10-11_05-04-40_597_3555575733389397838/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-58-51_033_1299290659037381221/-mr-10000 POSTHOOK: Lineage: columnarserde_create_shortcut.a SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lint, type:array, comment:from deserializer), ] POSTHOOK: Lineage: columnarserde_create_shortcut.b SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lstring, type:array, comment:from deserializer), ] POSTHOOK: Lineage: columnarserde_create_shortcut.c SIMPLE [(src_thrift)src_thrift.FieldSchema(name:mstringstring, type:map, comment:from deserializer), ] @@ -227,11 +227,11 @@ PREHOOK: query: SELECT columnShortcutTable.* FROM columnShortcutTable PREHOOK: type: QUERY PREHOOK: Input: default@columnshortcuttable -PREHOOK: Output: file:/tmp/thiruvel/hive_2010-10-11_05-04-42_280_1296197972182075194/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-58-51_433_8399933408938118152/-mr-10000 POSTHOOK: query: SELECT columnShortcutTable.* FROM columnShortcutTable POSTHOOK: type: QUERY POSTHOOK: Input: default@columnshortcuttable -POSTHOOK: Output: file:/tmp/thiruvel/hive_2010-10-11_05-04-42_280_1296197972182075194/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-58-51_433_8399933408938118152/-mr-10000 POSTHOOK: Lineage: columnarserde_create_shortcut.a SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lint, type:array, comment:from deserializer), ] POSTHOOK: Lineage: columnarserde_create_shortcut.b SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lstring, type:array, comment:from deserializer), ] POSTHOOK: Lineage: columnarserde_create_shortcut.c SIMPLE [(src_thrift)src_thrift.FieldSchema(name:mstringstring, type:map, comment:from deserializer), ] @@ -267,11 +267,11 @@ PREHOOK: query: SELECT columnShortcutTable.* FROM columnShortcutTable PREHOOK: type: QUERY PREHOOK: Input: default@columnshortcuttable -PREHOOK: Output: file:/tmp/thiruvel/hive_2010-10-11_05-04-43_316_4144322716554802876/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-58-51_851_6818922030532907659/-mr-10000 POSTHOOK: query: SELECT columnShortcutTable.* FROM columnShortcutTable POSTHOOK: type: QUERY POSTHOOK: Input: default@columnshortcuttable -POSTHOOK: Output: file:/tmp/thiruvel/hive_2010-10-11_05-04-43_316_4144322716554802876/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-58-51_851_6818922030532907659/-mr-10000 POSTHOOK: Lineage: columnarserde_create_shortcut.a SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lint, type:array, comment:from deserializer), ] POSTHOOK: Lineage: columnarserde_create_shortcut.b SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lstring, type:array, comment:from deserializer), ] POSTHOOK: Lineage: columnarserde_create_shortcut.c SIMPLE [(src_thrift)src_thrift.FieldSchema(name:mstringstring, type:map, comment:from deserializer), ] Index: ql/src/test/results/clientpositive/join2.q.out =================================================================== --- ql/src/test/results/clientpositive/join2.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join2.q.out (working copy) @@ -131,7 +131,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j2 + name: default.dest_j2 Stage: Stage-0 Move Operator @@ -141,7 +141,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j2 + name: default.dest_j2 Stage: Stage-3 Stats-Aggr Operator @@ -162,11 +162,11 @@ PREHOOK: query: SELECT dest_j2.* FROM dest_j2 PREHOOK: type: QUERY PREHOOK: Input: default@dest_j2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-37-49_730_3869022116910097771/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-28-58_298_7113580136367137704/-mr-10000 POSTHOOK: query: SELECT dest_j2.* FROM dest_j2 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_j2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-37-49_730_3869022116910097771/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-28-58_298_7113580136367137704/-mr-10000 POSTHOOK: Lineage: dest_j2.key EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j2.value SIMPLE [(src)src3.FieldSchema(name:value, type:string, comment:default), ] 0 val_0 Index: ql/src/test/results/clientpositive/load_dyn_part14.q.out =================================================================== --- ql/src/test/results/clientpositive/load_dyn_part14.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/load_dyn_part14.q.out (working copy) @@ -12,7 +12,7 @@ key string value string -Detailed Table Information Table(tableName:nzhang_part14, dbName:default, owner:njain, createTime:1289453285, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:null), FieldSchema(name:value, type:string, comment:null)], location:pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/nzhang_part14, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:value, type:string, comment:null)], parameters:{transient_lastDdlTime=1289453285}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:nzhang_part14, dbName:default, owner:sdong, createTime:1297248958, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:null), FieldSchema(name:value, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_part14, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:value, type:string, comment:null)], parameters:{transient_lastDdlTime=1297248958}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) PREHOOK: query: explain insert overwrite table nzhang_part14 partition(value) select key, value from ( @@ -83,7 +83,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/njain/hive_2010-11-10_21-28-06_008_7897968784053489362/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-55-58_347_8550659936623392626/-mr-10002 Union Select Operator expressions: @@ -99,8 +99,8 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part14 - file:/tmp/njain/hive_2010-11-10_21-28-06_008_7897968784053489362/-mr-10004 + name: default.nzhang_part14 + file:/tmp/sdong/hive_2011-02-09_02-55-58_347_8550659936623392626/-mr-10004 Union Select Operator expressions: @@ -116,8 +116,8 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part14 - file:/tmp/njain/hive_2010-11-10_21-28-06_008_7897968784053489362/-mr-10005 + name: default.nzhang_part14 + file:/tmp/sdong/hive_2011-02-09_02-55-58_347_8550659936623392626/-mr-10005 Union Select Operator expressions: @@ -133,7 +133,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part14 + name: default.nzhang_part14 Stage: Stage-6 Conditional Operator @@ -142,7 +142,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-28-06_008_7897968784053489362/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-55-58_347_8550659936623392626/-ext-10000 Stage: Stage-0 Move Operator @@ -154,7 +154,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part14 + name: default.nzhang_part14 Stage: Stage-3 Stats-Aggr Operator @@ -162,7 +162,7 @@ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-28-06_008_7897968784053489362/-ext-10003 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-55-58_347_8550659936623392626/-ext-10003 File Output Operator compressed: false GlobalTableId: 0 @@ -170,7 +170,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part14 + name: default.nzhang_part14 Stage: Stage-7 Map Reduce @@ -275,12 +275,13 @@ PREHOOK: type: QUERY PREHOOK: Input: default@nzhang_part14@value= PREHOOK: Input: default@nzhang_part14@value=__HIVE_DEFAULT_PARTITION__ -PREHOOK: Output: file:/tmp/njain/hive_2010-11-10_21-28-37_957_3443086512551503511/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-56-14_912_1270625635924155589/-mr-10000 POSTHOOK: query: select * from nzhang_part14 where value <> 'a' order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_part14@value= POSTHOOK: Input: default@nzhang_part14@value=__HIVE_DEFAULT_PARTITION__ +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-56-14_912_1270625635924155589/-mr-10000 POSTHOOK: Lineage: nzhang_part14 PARTITION(value= ).key EXPRESSION [] POSTHOOK: Lineage: nzhang_part14 PARTITION(value=__HIVE_DEFAULT_PARTITION__).key EXPRESSION [] k1 __HIVE_DEFAULT_PARTITION__ Index: ql/src/test/results/clientpositive/input7.q.out =================================================================== --- ql/src/test/results/clientpositive/input7.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input7.q.out (working copy) @@ -50,7 +50,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Conditional Operator @@ -59,7 +59,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-32-29_771_7561754217677684022/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-24-38_624_8326893266896473142/-ext-10000 Stage: Stage-0 Move Operator @@ -69,7 +69,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -77,7 +77,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-32-29_771_7561754217677684022/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-24-38_624_8326893266896473142/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -85,7 +85,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM src1 @@ -103,11 +103,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-32-35_981_8611592653456547806/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-24-43_460_8456841493169398045/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-32-35_981_8611592653456547806/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-24-43_460_8456841493169398045/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [] POSTHOOK: Lineage: dest1.c2 EXPRESSION [(src1)src1.FieldSchema(name:key, type:string, comment:default), ] NULL 238 Index: ql/src/test/results/clientpositive/stats9.q.out =================================================================== --- ql/src/test/results/clientpositive/stats9.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/stats9.q.out (working copy) @@ -20,7 +20,7 @@ POSTHOOK: Lineage: analyze_srcbucket.key SIMPLE [(srcbucket)srcbucket.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: analyze_srcbucket.value SIMPLE [(srcbucket)srcbucket.FieldSchema(name:value, type:string, comment:null), ] ABSTRACT SYNTAX TREE: - (TOK_ANALYZE (TOK_TABTYPE analyze_srcbucket)) + (TOK_ANALYZE (TOK_TAB analyze_srcbucket)) STAGE DEPENDENCIES: Stage-0 is a root stage @@ -57,4 +57,4 @@ key int value string -Detailed Table Information Table(tableName:analyze_srcbucket, dbName:default, owner:heyongqiang, createTime:1290146857, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:int, comment:null), FieldSchema(name:value, type:string, comment:null)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcbucket, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:2, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[key], sortCols:[], parameters:{}), partitionKeys:[], parameters:{numPartitions=0, numFiles=1, transient_lastDdlTime=1290146885, numRows=1000, totalSize=11603}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:analyze_srcbucket, dbName:default, owner:sdong, createTime:1297252126, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:int, comment:null), FieldSchema(name:value, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcbucket, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:2, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[key], sortCols:[], parameters:{}), partitionKeys:[], parameters:{numPartitions=0, numFiles=1, transient_lastDdlTime=1297252134, numRows=1000, totalSize=11603}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) Index: ql/src/test/results/clientpositive/groupby5_map_skew.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby5_map_skew.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby5_map_skew.q.out (working copy) @@ -65,7 +65,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -75,7 +75,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -93,10 +93,10 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-16-33_383_4385266538141302612/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-10-36_790_6883689721593460499/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-16-33_383_4385266538141302612/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-10-36_790_6883689721593460499/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] 130091 Index: ql/src/test/results/clientpositive/groupby_map_ppr.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby_map_ppr.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby_map_ppr.q.out (working copy) @@ -75,10 +75,10 @@ type: double Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [src] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [src] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -150,16 +150,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Group By Operator aggregations: @@ -192,9 +192,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-22-49_812_5921005090870242001/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-14-07_752_7914495283631294331/-ext-10000 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-22-49_812_5921005090870242001/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-14-07_752_7914495283631294331/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -204,14 +204,14 @@ columns.types string:int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { string key, i32 c1, string c2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288390969 + transient_lastDdlTime 1297246447 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -220,7 +220,7 @@ Move Operator tables: replace: true - source: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-22-49_812_5921005090870242001/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-14-07_752_7914495283631294331/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -230,19 +230,19 @@ columns.types string:int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { string key, i32 c1, string c2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288390969 + transient_lastDdlTime 1297246447 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - tmp directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-22-49_812_5921005090870242001/-ext-10001 + name: default.dest1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-14-07_752_7914495283631294331/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-22-49_812_5921005090870242001/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-14-07_752_7914495283631294331/-ext-10000/ PREHOOK: query: FROM srcpart src @@ -269,11 +269,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/sdong/hive_2010-10-29_15-22-55_688_1203427632121484317/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-14-17_108_5484996245169050287/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/sdong/hive_2010-10-29_15-22-55_688_1203427632121484317/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-14-17_108_5484996245169050287/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(srcpart)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c2 EXPRESSION [(srcpart)src.FieldSchema(name:key, type:string, comment:default), (srcpart)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.key EXPRESSION [(srcpart)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/join39.q.out =================================================================== --- ql/src/test/results/clientpositive/join39.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join39.q.out (working copy) @@ -108,7 +108,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Local Work: Map Reduce Local Work @@ -119,7 +119,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-14-05_003_6546778973100053760/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-33-07_464_8928550898245895195/-ext-10000 Stage: Stage-0 Move Operator @@ -129,7 +129,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Stage: Stage-2 Stats-Aggr Operator @@ -137,7 +137,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-14-05_003_6546778973100053760/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-33-07_464_8928550898245895195/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -145,7 +145,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 PREHOOK: query: INSERT OVERWRITE TABLE dest_j1 @@ -167,11 +167,11 @@ PREHOOK: query: select * from dest_j1 x order by x.key PREHOOK: type: QUERY PREHOOK: Input: default@dest_j1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_12-14-14_819_2106628094710415660/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-33-15_317_5781360294582617014/-mr-10000 POSTHOOK: query: select * from dest_j1 x order by x.key POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_j1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_12-14-14_819_2106628094710415660/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-33-15_317_5781360294582617014/-mr-10000 POSTHOOK: Lineage: dest_j1.key SIMPLE [(src)x.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.key1 SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.val2 SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/groupby5.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby5.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby5.q.out (working copy) @@ -70,7 +70,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-16-05_756_422253425726749240/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-10-09_944_9017385611902469092/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -114,7 +114,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -124,7 +124,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-3 Stats-Aggr Operator @@ -149,11 +149,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-16-16_036_6260975271152662340/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-10-19_334_605555459194479371/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-16-16_036_6260975271152662340/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-10-19_334_605555459194479371/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] 0 0.0 Index: ql/src/test/results/clientpositive/input11_limit.q.out =================================================================== --- ql/src/test/results/clientpositive/input11_limit.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input11_limit.q.out (working copy) @@ -67,7 +67,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -77,7 +77,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -98,11 +98,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-26-34_699_86964705078646062/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-19-53_002_9114039960742536584/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-26-34_699_86964705078646062/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-19-53_002_9114039960742536584/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] 86 val_86 Index: ql/src/test/results/clientpositive/load_dyn_part3.q.out =================================================================== --- ql/src/test/results/clientpositive/load_dyn_part3.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/load_dyn_part3.q.out (working copy) @@ -20,7 +20,7 @@ ds string hr string -Detailed Table Information Table(tableName:nzhang_part3, dbName:default, owner:null, createTime:1289453678, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/nzhang_part3, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{transient_lastDdlTime=1289453678}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:nzhang_part3, dbName:default, owner:null, createTime:1297249005, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_part3, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{transient_lastDdlTime=1297249005}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) PREHOOK: query: explain insert overwrite table nzhang_part3 partition (ds, hr) select key, value, ds, hr from srcpart where ds is not null and hr is not null PREHOOK: type: QUERY @@ -64,7 +64,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part3 + name: default.nzhang_part3 Stage: Stage-0 Move Operator @@ -77,7 +77,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part3 + name: default.nzhang_part3 Stage: Stage-2 Stats-Aggr Operator @@ -114,13 +114,14 @@ PREHOOK: Input: default@nzhang_part3@ds=2008-04-08/hr=12 PREHOOK: Input: default@nzhang_part3@ds=2008-04-09/hr=11 PREHOOK: Input: default@nzhang_part3@ds=2008-04-09/hr=12 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-10_21-34-49_284_3186146453248859666/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-56-52_799_7533645678519814031/-mr-10000 POSTHOOK: query: select * from nzhang_part3 where ds is not null and hr is not null POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_part3@ds=2008-04-08/hr=11 POSTHOOK: Input: default@nzhang_part3@ds=2008-04-08/hr=12 POSTHOOK: Input: default@nzhang_part3@ds=2008-04-09/hr=11 POSTHOOK: Input: default@nzhang_part3@ds=2008-04-09/hr=12 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-56-52_799_7533645678519814031/-mr-10000 POSTHOOK: Lineage: nzhang_part3 PARTITION(ds=2008-04-08,hr=11).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part3 PARTITION(ds=2008-04-08,hr=11).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part3 PARTITION(ds=2008-04-08,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/sample4.q.out =================================================================== --- ql/src/test/results/clientpositive/sample4.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/sample4.q.out (working copy) @@ -54,9 +54,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-22_823_2600373229446067176/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-52_674_3595291209656401397/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-22_823_2600373229446067176/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-52_674_3595291209656401397/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -66,22 +66,22 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510262 + transient_lastDdlTime 1297250872 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: true MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt [s] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt [s] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt Partition base file name: srcbucket0.txt input format: org.apache.hadoop.mapred.TextInputFormat @@ -93,12 +93,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket - name srcbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket + name default.srcbucket serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504426 + transient_lastDdlTime 1297243146 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -110,15 +110,15 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket - name srcbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket + name default.srcbucket serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504426 + transient_lastDdlTime 1297243146 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket - name: srcbucket + name: default.srcbucket + name: default.srcbucket Stage: Stage-5 Conditional Operator @@ -127,14 +127,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-22_823_2600373229446067176/-ext-10002 - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-22_823_2600373229446067176/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-52_674_3595291209656401397/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-52_674_3595291209656401397/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-22_823_2600373229446067176/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-52_674_3595291209656401397/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -144,28 +144,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510262 + transient_lastDdlTime 1297250872 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - tmp directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-22_823_2600373229446067176/-ext-10001 + name: default.dest1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-52_674_3595291209656401397/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-22_823_2600373229446067176/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-52_674_3595291209656401397/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-22_823_2600373229446067176/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-52_674_3595291209656401397/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-22_823_2600373229446067176/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-52_674_3595291209656401397/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -176,22 +176,22 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510262 + transient_lastDdlTime 1297250872 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-22_823_2600373229446067176/-ext-10002 [pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-22_823_2600373229446067176/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-52_674_3595291209656401397/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-52_674_3595291209656401397/-ext-10002] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-22_823_2600373229446067176/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-52_674_3595291209656401397/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -202,12 +202,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510262 + transient_lastDdlTime 1297250872 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -218,15 +218,15 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510262 + transient_lastDdlTime 1297250872 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - name: dest1 + name: default.dest1 + name: default.dest1 PREHOOK: query: INSERT OVERWRITE TABLE dest1 SELECT s.* @@ -244,11 +244,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-24-28_726_8098117195006938273/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-27-57_685_3254244771719130541/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-24-28_726_8098117195006938273/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-27-57_685_3254244771719130541/-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), ] 474 val_475 Index: ql/src/test/results/clientpositive/join25.q.out =================================================================== --- ql/src/test/results/clientpositive/join25.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join25.q.out (working copy) @@ -98,7 +98,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Local Work: Map Reduce Local Work @@ -109,7 +109,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-09-26_418_6554875518928365288/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-29-39_269_8494235108535430141/-ext-10000 Stage: Stage-0 Move Operator @@ -119,7 +119,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Stage: Stage-2 Stats-Aggr Operator @@ -127,7 +127,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-09-26_418_6554875518928365288/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-29-39_269_8494235108535430141/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -135,7 +135,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 PREHOOK: query: INSERT OVERWRITE TABLE dest_j1 @@ -158,11 +158,11 @@ PREHOOK: query: select * from dest_j1 x order by x.key PREHOOK: type: QUERY PREHOOK: Input: default@dest_j1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_12-09-36_127_7873084918847057156/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-29-46_242_841782700752786316/-mr-10000 POSTHOOK: query: select * from dest_j1 x order by x.key POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_j1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_12-09-36_127_7873084918847057156/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-29-46_242_841782700752786316/-mr-10000 POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src1)x.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.val2 SIMPLE [(src)y.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src1)x.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/stats4.q.out =================================================================== --- ql/src/test/results/clientpositive/stats4.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/stats4.q.out (working copy) @@ -79,7 +79,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part1 + name: default.nzhang_part1 Filter Operator predicate: expr: (ds > '2008-04-08') @@ -100,7 +100,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part2 + name: default.nzhang_part2 Stage: Stage-6 Conditional Operator @@ -109,7 +109,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-11_09-10-08_753_8106524976211604432/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-47-26_388_9093405390374238426/-ext-10000 Stage: Stage-0 Move Operator @@ -122,7 +122,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part1 + name: default.nzhang_part1 Stage: Stage-3 Stats-Aggr Operator @@ -130,7 +130,7 @@ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-11_09-10-08_753_8106524976211604432/-ext-10004 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-47-26_388_9093405390374238426/-ext-10004 File Output Operator compressed: false GlobalTableId: 0 @@ -138,7 +138,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part1 + name: default.nzhang_part1 Stage: Stage-10 Conditional Operator @@ -147,7 +147,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-11_09-10-08_753_8106524976211604432/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-47-26_388_9093405390374238426/-ext-10002 Stage: Stage-1 Move Operator @@ -160,7 +160,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part2 + name: default.nzhang_part2 Stage: Stage-7 Stats-Aggr Operator @@ -168,7 +168,7 @@ Stage: Stage-8 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-11_09-10-08_753_8106524976211604432/-ext-10005 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-47-26_388_9093405390374238426/-ext-10005 File Output Operator compressed: false GlobalTableId: 0 @@ -176,7 +176,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part2 + name: default.nzhang_part2 PREHOOK: query: from srcpart @@ -241,12 +241,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@nzhang_part1@ds=2008-04-08/hr=11 PREHOOK: Input: default@nzhang_part1@ds=2008-04-08/hr=12 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-11_09-10-32_512_5187254722157059848/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-47-35_775_7253113735468369073/-mr-10000 POSTHOOK: query: select * from nzhang_part1 where ds is not null and hr is not null POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_part1@ds=2008-04-08/hr=11 POSTHOOK: Input: default@nzhang_part1@ds=2008-04-08/hr=12 -POSTHOOK: Output: file:/tmp/njain/hive_2010-11-11_09-10-32_512_5187254722157059848/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-47-35_775_7253113735468369073/-mr-10000 POSTHOOK: Lineage: nzhang_part1 PARTITION(ds=2008-04-08,hr=11).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part1 PARTITION(ds=2008-04-08,hr=11).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part1 PARTITION(ds=2008-04-08,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] @@ -1259,12 +1259,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@nzhang_part2@ds=2008-12-31/hr=11 PREHOOK: Input: default@nzhang_part2@ds=2008-12-31/hr=12 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-11_09-10-33_193_4384833085710864919/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-47-36_390_656803714497737561/-mr-10000 POSTHOOK: query: select * from nzhang_part2 where ds is not null and hr is not null POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_part2@ds=2008-12-31/hr=11 POSTHOOK: Input: default@nzhang_part2@ds=2008-12-31/hr=12 -POSTHOOK: Output: file:/tmp/njain/hive_2010-11-11_09-10-33_193_4384833085710864919/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-47-36_390_656803714497737561/-mr-10000 POSTHOOK: Lineage: nzhang_part1 PARTITION(ds=2008-04-08,hr=11).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part1 PARTITION(ds=2008-04-08,hr=11).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part1 PARTITION(ds=2008-04-08,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] @@ -2290,7 +2290,7 @@ ds string hr string -Detailed Partition Information Partition(values:[2008-04-08, 11], dbName:default, tableName:nzhang_part1, createTime:1289495431, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/nzhang_part1/ds=2008-04-08/hr=11, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1289495431, numRows=500, totalSize=5812}) +Detailed Partition Information Partition(values:[2008-04-08, 11], dbName:default, tableName:nzhang_part1, createTime:1297252054, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_part1/ds=2008-04-08/hr=11, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1297252055, numRows=500, totalSize=5812}) PREHOOK: query: describe extended nzhang_part1 partition(ds='2008-04-08',hr=12) PREHOOK: type: DESCTABLE POSTHOOK: query: describe extended nzhang_part1 partition(ds='2008-04-08',hr=12) @@ -2308,7 +2308,7 @@ ds string hr string -Detailed Partition Information Partition(values:[2008-04-08, 12], dbName:default, tableName:nzhang_part1, createTime:1289495431, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/nzhang_part1/ds=2008-04-08/hr=12, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1289495432, numRows=500, totalSize=5812}) +Detailed Partition Information Partition(values:[2008-04-08, 12], dbName:default, tableName:nzhang_part1, createTime:1297252055, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_part1/ds=2008-04-08/hr=12, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1297252055, numRows=500, totalSize=5812}) PREHOOK: query: describe extended nzhang_part2 partition(ds='2008-12-31',hr=11) PREHOOK: type: DESCTABLE POSTHOOK: query: describe extended nzhang_part2 partition(ds='2008-12-31',hr=11) @@ -2326,7 +2326,7 @@ ds string hr string -Detailed Partition Information Partition(values:[2008-12-31, 11], dbName:default, tableName:nzhang_part2, createTime:1289495429, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/nzhang_part2/ds=2008-12-31/hr=11, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1289495430, numRows=500, totalSize=5812}) +Detailed Partition Information Partition(values:[2008-12-31, 11], dbName:default, tableName:nzhang_part2, createTime:1297252053, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_part2/ds=2008-12-31/hr=11, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1297252054, numRows=500, totalSize=5812}) PREHOOK: query: describe extended nzhang_part2 partition(ds='2008-12-31',hr=12) PREHOOK: type: DESCTABLE POSTHOOK: query: describe extended nzhang_part2 partition(ds='2008-12-31',hr=12) @@ -2344,7 +2344,7 @@ ds string hr string -Detailed Partition Information Partition(values:[2008-12-31, 12], dbName:default, tableName:nzhang_part2, createTime:1289495429, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/nzhang_part2/ds=2008-12-31/hr=12, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1289495430, numRows=500, totalSize=5812}) +Detailed Partition Information Partition(values:[2008-12-31, 12], dbName:default, tableName:nzhang_part2, createTime:1297252053, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_part2/ds=2008-12-31/hr=12, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1297252054, numRows=500, totalSize=5812}) PREHOOK: query: describe extended nzhang_part1 PREHOOK: type: DESCTABLE POSTHOOK: query: describe extended nzhang_part1 @@ -2362,7 +2362,7 @@ ds string hr string -Detailed Table Information Table(tableName:nzhang_part1, dbName:default, owner:null, createTime:1289495408, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/nzhang_part1, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{numPartitions=2, numFiles=2, transient_lastDdlTime=1289495432, numRows=1000, totalSize=11624}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:nzhang_part1, dbName:default, owner:null, createTime:1297252046, lastAccessTime:1297250836, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_part1, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{numPartitions=2, numFiles=2, transient_lastDdlTime=1297252055, numRows=1000, totalSize=11624}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) PREHOOK: query: describe extended nzhang_part2 PREHOOK: type: DESCTABLE POSTHOOK: query: describe extended nzhang_part2 @@ -2380,7 +2380,7 @@ ds string hr string -Detailed Table Information Table(tableName:nzhang_part2, dbName:default, owner:null, createTime:1289495408, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/nzhang_part2, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{numPartitions=2, numFiles=2, transient_lastDdlTime=1289495430, numRows=1000, totalSize=11624}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:nzhang_part2, dbName:default, owner:null, createTime:1297252046, lastAccessTime:1297250836, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_part2, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{numPartitions=2, numFiles=2, transient_lastDdlTime=1297252054, numRows=1000, totalSize=11624}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) PREHOOK: query: drop table nzhang_part1 PREHOOK: type: DROPTABLE PREHOOK: Input: default@nzhang_part1 Index: ql/src/test/results/clientpositive/smb_mapjoin_6.q.out =================================================================== --- ql/src/test/results/clientpositive/smb_mapjoin_6.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/smb_mapjoin_6.q.out (working copy) @@ -112,7 +112,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: smb_join_results + name: default.smb_join_results Stage: Stage-0 Move Operator @@ -122,7 +122,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: smb_join_results + name: default.smb_join_results Stage: Stage-2 Stats-Aggr Operator @@ -151,11 +151,11 @@ PREHOOK: query: select * from smb_join_results order by k1 PREHOOK: type: QUERY PREHOOK: Input: default@smb_join_results -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-42-55_279_7791327046962948852/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-42-20_502_7567746500137010038/-mr-10000 POSTHOOK: query: select * from smb_join_results order by k1 POSTHOOK: type: QUERY POSTHOOK: Input: default@smb_join_results -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-42-55_279_7791327046962948852/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-42-20_502_7567746500137010038/-mr-10000 POSTHOOK: Lineage: smb_bucket4_1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: smb_bucket4_1.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: smb_bucket4_2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -1217,11 +1217,11 @@ PREHOOK: query: select sum(hash(k1)) as k1, sum(hash(k2)) as k2, sum(hash(v1)) as v1, sum(hash(v2)) as v2 from normal_join_results PREHOOK: type: QUERY PREHOOK: Input: default@normal_join_results -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-43-08_043_5392784140667926398/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-42-31_171_4919289870091415353/-mr-10000 POSTHOOK: query: select sum(hash(k1)) as k1, sum(hash(k2)) as k2, sum(hash(v1)) as v1, sum(hash(v2)) as v2 from normal_join_results POSTHOOK: type: QUERY POSTHOOK: Input: default@normal_join_results -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-43-08_043_5392784140667926398/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-42-31_171_4919289870091415353/-mr-10000 POSTHOOK: Lineage: normal_join_results.k1 SIMPLE [(smb_bucket4_1)a.FieldSchema(name:key, type:int, comment:from deserializer), ] POSTHOOK: Lineage: normal_join_results.k2 SIMPLE [(smb_bucket4_2)b.FieldSchema(name:key, type:int, comment:from deserializer), ] POSTHOOK: Lineage: normal_join_results.v1 SIMPLE [(smb_bucket4_1)a.FieldSchema(name:value, type:string, comment:from deserializer), ] @@ -1238,11 +1238,11 @@ PREHOOK: query: select sum(hash(k1)) as k1, sum(hash(k2)) as k2, sum(hash(v1)) as v1, sum(hash(v2)) as v2 from smb_join_results PREHOOK: type: QUERY PREHOOK: Input: default@smb_join_results -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-43-11_731_2929158753603213416/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-42-34_592_6707102153808433819/-mr-10000 POSTHOOK: query: select sum(hash(k1)) as k1, sum(hash(k2)) as k2, sum(hash(v1)) as v1, sum(hash(v2)) as v2 from smb_join_results POSTHOOK: type: QUERY POSTHOOK: Input: default@smb_join_results -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-43-11_731_2929158753603213416/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-42-34_592_6707102153808433819/-mr-10000 POSTHOOK: Lineage: normal_join_results.k1 SIMPLE [(smb_bucket4_1)a.FieldSchema(name:key, type:int, comment:from deserializer), ] POSTHOOK: Lineage: normal_join_results.k2 SIMPLE [(smb_bucket4_2)b.FieldSchema(name:key, type:int, comment:from deserializer), ] POSTHOOK: Lineage: normal_join_results.v1 SIMPLE [(smb_bucket4_1)a.FieldSchema(name:value, type:string, comment:from deserializer), ] @@ -1332,7 +1332,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: smb_join_results + name: default.smb_join_results Stage: Stage-0 Move Operator @@ -1342,7 +1342,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: smb_join_results + name: default.smb_join_results Stage: Stage-2 Stats-Aggr Operator @@ -1411,11 +1411,11 @@ PREHOOK: query: select * from smb_join_results order by k1 PREHOOK: type: QUERY PREHOOK: Input: default@smb_join_results -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-43-31_563_4706124973124003834/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-42-48_454_7879166306031485247/-mr-10000 POSTHOOK: query: select * from smb_join_results order by k1 POSTHOOK: type: QUERY POSTHOOK: Input: default@smb_join_results -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-43-31_563_4706124973124003834/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-42-48_454_7879166306031485247/-mr-10000 POSTHOOK: Lineage: normal_join_results.k1 SIMPLE [(smb_bucket4_1)a.FieldSchema(name:key, type:int, comment:from deserializer), ] POSTHOOK: Lineage: normal_join_results.k2 SIMPLE [(smb_bucket4_2)b.FieldSchema(name:key, type:int, comment:from deserializer), ] POSTHOOK: Lineage: normal_join_results.v1 SIMPLE [(smb_bucket4_1)a.FieldSchema(name:value, type:string, comment:from deserializer), ] @@ -2501,11 +2501,11 @@ PREHOOK: query: select sum(hash(k1)) as k1, sum(hash(k2)) as k2, sum(hash(v1)) as v1, sum(hash(v2)) as v2 from normal_join_results PREHOOK: type: QUERY PREHOOK: Input: default@normal_join_results -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-43-45_165_8849292789711497460/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-42-57_940_5731720798909725734/-mr-10000 POSTHOOK: query: select sum(hash(k1)) as k1, sum(hash(k2)) as k2, sum(hash(v1)) as v1, sum(hash(v2)) as v2 from normal_join_results POSTHOOK: type: QUERY POSTHOOK: Input: default@normal_join_results -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-43-45_165_8849292789711497460/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-42-57_940_5731720798909725734/-mr-10000 POSTHOOK: Lineage: normal_join_results.k1 SIMPLE [(smb_bucket4_1)a.FieldSchema(name:key, type:int, comment:from deserializer), ] POSTHOOK: Lineage: normal_join_results.k1 SIMPLE [(smb_bucket4_1)a.FieldSchema(name:key, type:int, comment:from deserializer), ] POSTHOOK: Lineage: normal_join_results.k2 SIMPLE [(smb_bucket4_2)b.FieldSchema(name:key, type:int, comment:from deserializer), ] @@ -2534,11 +2534,11 @@ PREHOOK: query: select sum(hash(k1)) as k1, sum(hash(k2)) as k2, sum(hash(v1)) as v1, sum(hash(v2)) as v2 from smb_join_results PREHOOK: type: QUERY PREHOOK: Input: default@smb_join_results -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-43-48_878_3474963241024457613/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-43-01_383_4069484581208894548/-mr-10000 POSTHOOK: query: select sum(hash(k1)) as k1, sum(hash(k2)) as k2, sum(hash(v1)) as v1, sum(hash(v2)) as v2 from smb_join_results POSTHOOK: type: QUERY POSTHOOK: Input: default@smb_join_results -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-43-48_878_3474963241024457613/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-43-01_383_4069484581208894548/-mr-10000 POSTHOOK: Lineage: normal_join_results.k1 SIMPLE [(smb_bucket4_1)a.FieldSchema(name:key, type:int, comment:from deserializer), ] POSTHOOK: Lineage: normal_join_results.k1 SIMPLE [(smb_bucket4_1)a.FieldSchema(name:key, type:int, comment:from deserializer), ] POSTHOOK: Lineage: normal_join_results.k2 SIMPLE [(smb_bucket4_2)b.FieldSchema(name:key, type:int, comment:from deserializer), ] @@ -2656,7 +2656,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: smb_join_results + name: default.smb_join_results Stage: Stage-0 Move Operator @@ -2666,7 +2666,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: smb_join_results + name: default.smb_join_results Stage: Stage-2 Stats-Aggr Operator @@ -2812,7 +2812,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: smb_join_results + name: default.smb_join_results Stage: Stage-0 Move Operator @@ -2822,7 +2822,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: smb_join_results + name: default.smb_join_results Stage: Stage-2 Stats-Aggr Operator @@ -2993,12 +2993,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@smb_bucket4_1 PREHOOK: Input: default@smb_bucket4_2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-44-11_081_2683450931844732628/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-43-16_074_8782565785401375324/-mr-10000 POSTHOOK: query: select /*+mapjoin(b,c)*/ * from smb_bucket4_1 a join smb_bucket4_2 b on a.key = b.key join smb_bucket4_2 c on b.key = c.key where a.key>1000 POSTHOOK: type: QUERY POSTHOOK: Input: default@smb_bucket4_1 POSTHOOK: Input: default@smb_bucket4_2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-44-11_081_2683450931844732628/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-43-16_074_8782565785401375324/-mr-10000 POSTHOOK: Lineage: normal_join_results.k1 SIMPLE [(smb_bucket4_1)a.FieldSchema(name:key, type:int, comment:from deserializer), ] POSTHOOK: Lineage: normal_join_results.k1 SIMPLE [(smb_bucket4_1)a.FieldSchema(name:key, type:int, comment:from deserializer), ] POSTHOOK: Lineage: normal_join_results.k2 SIMPLE [(smb_bucket4_2)b.FieldSchema(name:key, type:int, comment:from deserializer), ] Index: ql/src/test/results/clientpositive/union10.q.out =================================================================== --- ql/src/test/results/clientpositive/union10.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/union10.q.out (working copy) @@ -81,7 +81,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_18-16-27_415_2101823753644090814/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_04-14-35_818_2538687122033344286/-mr-10002 Union Select Operator expressions: @@ -104,8 +104,8 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable - file:/tmp/nzhang/hive_2010-09-14_18-16-27_415_2101823753644090814/-mr-10004 + name: default.tmptable + file:/tmp/sdong/hive_2011-02-09_04-14-35_818_2538687122033344286/-mr-10004 Union Select Operator expressions: @@ -128,8 +128,8 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable - file:/tmp/nzhang/hive_2010-09-14_18-16-27_415_2101823753644090814/-mr-10005 + name: default.tmptable + file:/tmp/sdong/hive_2011-02-09_04-14-35_818_2538687122033344286/-mr-10005 Union Select Operator expressions: @@ -152,7 +152,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable + name: default.tmptable Stage: Stage-6 Conditional Operator @@ -161,7 +161,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_18-16-27_415_2101823753644090814/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_04-14-35_818_2538687122033344286/-ext-10000 Stage: Stage-0 Move Operator @@ -171,7 +171,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable + name: default.tmptable Stage: Stage-3 Stats-Aggr Operator @@ -179,7 +179,7 @@ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_18-16-27_415_2101823753644090814/-ext-10003 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_04-14-35_818_2538687122033344286/-ext-10003 File Output Operator compressed: false GlobalTableId: 0 @@ -187,7 +187,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable + name: default.tmptable Stage: Stage-7 Map Reduce @@ -293,11 +293,11 @@ PREHOOK: query: select * from tmptable x sort by x.key PREHOOK: type: QUERY PREHOOK: Input: default@tmptable -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-16-48_462_1984253436535360715/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-14-50_715_2568230071673910838/-mr-10000 POSTHOOK: query: select * from tmptable x sort by x.key POSTHOOK: type: QUERY POSTHOOK: Input: default@tmptable -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-16-48_462_1984253436535360715/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-14-50_715_2568230071673910838/-mr-10000 POSTHOOK: Lineage: tmptable.key EXPRESSION [] POSTHOOK: Lineage: tmptable.value EXPRESSION [(src)s1.null, (src)s2.null, (src)s3.null, ] tst1 500 Index: ql/src/test/results/clientpositive/rcfile_null_value.q.out =================================================================== --- ql/src/test/results/clientpositive/rcfile_null_value.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/rcfile_null_value.q.out (working copy) @@ -16,11 +16,11 @@ PREHOOK: query: SELECT * FROM src1_rc PREHOOK: type: QUERY PREHOOK: Input: default@src1_rc -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-21-57_139_2164061306153672083/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-26-06_656_2554566198287619584/-mr-10000 POSTHOOK: query: SELECT * FROM src1_rc POSTHOOK: type: QUERY POSTHOOK: Input: default@src1_rc -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-21-57_139_2164061306153672083/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-26-06_656_2554566198287619584/-mr-10000 POSTHOOK: Lineage: src1_rc.key SIMPLE [(src1)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src1_rc.value SIMPLE [(src1)src1.FieldSchema(name:value, type:string, comment:default), ] 238 val_238 @@ -212,7 +212,7 @@ input format: org.apache.hadoop.hive.ql.io.RCFileInputFormat output format: org.apache.hadoop.hive.ql.io.RCFileOutputFormat serde: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe - name: dest1_rc + name: default.dest1_rc Stage: Stage-0 Move Operator @@ -222,7 +222,7 @@ input format: org.apache.hadoop.hive.ql.io.RCFileInputFormat output format: org.apache.hadoop.hive.ql.io.RCFileOutputFormat serde: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe - name: dest1_rc + name: default.dest1_rc Stage: Stage-2 Stats-Aggr Operator @@ -269,11 +269,11 @@ PREHOOK: query: SELECT dest1_rc.* FROM dest1_rc PREHOOK: type: QUERY PREHOOK: Input: default@dest1_rc -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-22-05_391_6302655231306765287/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-26-12_153_1532678084357657753/-mr-10000 POSTHOOK: query: SELECT dest1_rc.* FROM dest1_rc POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1_rc -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-22-05_391_6302655231306765287/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-26-12_153_1532678084357657753/-mr-10000 POSTHOOK: Lineage: dest1_rc.c1 EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1_rc.c2 SIMPLE [(src)src1.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1_rc.c3 EXPRESSION [(src)src2.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/groupby3_map_skew.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby3_map_skew.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby3_map_skew.q.out (working copy) @@ -120,7 +120,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-15-08_373_2624482254796238588/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-09-12_569_5288630552397974340/-mr-10002 Reduce Output Operator sort order: tag: -1 @@ -207,7 +207,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -217,7 +217,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-3 Stats-Aggr Operator @@ -263,11 +263,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-15-19_943_1654924992322441913/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-09-20_958_82182730544511386/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-15-19_943_1654924992322441913/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-09-20_958_82182730544511386/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c2 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c3 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/join34.q.out =================================================================== --- ql/src/test/results/clientpositive/join34.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join34.q.out (working copy) @@ -115,9 +115,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-19_150_396302363179050554/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-52_091_8478680327546754886/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-19_150_396302363179050554/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-52_091_8478680327546754886/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -127,14 +127,14 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, string val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288897939 + transient_lastDdlTime 1297247512 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -193,9 +193,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-19_150_396302363179050554/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-52_091_8478680327546754886/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-19_150_396302363179050554/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-52_091_8478680327546754886/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -205,14 +205,14 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, string val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288897939 + transient_lastDdlTime 1297247512 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -220,9 +220,9 @@ Map Reduce Local Work Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/src [null-subquery1:subq1-subquery1:x, null-subquery2:subq1-subquery2:x1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [null-subquery1:subq1-subquery1:x, null-subquery2:subq1-subquery2:x1] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -233,12 +233,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/liyintang/hive-1754/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288894219 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -249,15 +249,15 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288894219 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src + name: default.src + name: default.src Stage: Stage-5 Conditional Operator @@ -266,14 +266,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-19_150_396302363179050554/-ext-10002 - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-19_150_396302363179050554/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-52_091_8478680327546754886/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-52_091_8478680327546754886/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-19_150_396302363179050554/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-52_091_8478680327546754886/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -283,28 +283,28 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, string val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288897939 + transient_lastDdlTime 1297247512 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 - tmp directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-19_150_396302363179050554/-ext-10001 + name: default.dest_j1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-52_091_8478680327546754886/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-19_150_396302363179050554/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-52_091_8478680327546754886/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-19_150_396302363179050554/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-52_091_8478680327546754886/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-19_150_396302363179050554/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-52_091_8478680327546754886/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -315,22 +315,22 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, string val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288897939 + transient_lastDdlTime 1297247512 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-19_150_396302363179050554/-ext-10002 [pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-19_150_396302363179050554/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-52_091_8478680327546754886/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-52_091_8478680327546754886/-ext-10002] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-19_150_396302363179050554/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-52_091_8478680327546754886/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -341,12 +341,12 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, string val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288897939 + transient_lastDdlTime 1297247512 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -357,15 +357,15 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, string val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288897939 + transient_lastDdlTime 1297247512 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 - name: dest_j1 + name: default.dest_j1 + name: default.dest_j1 PREHOOK: query: INSERT OVERWRITE TABLE dest_j1 @@ -398,11 +398,11 @@ PREHOOK: query: select * from dest_j1 x order by x.key PREHOOK: type: QUERY PREHOOK: Input: default@dest_j1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_12-12-29_322_6593405909163555482/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-31-59_186_4545959086823211105/-mr-10000 POSTHOOK: query: select * from dest_j1 x order by x.key POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_j1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_12-12-29_322_6593405909163555482/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-31-59_186_4545959086823211105/-mr-10000 POSTHOOK: Lineage: dest_j1.key SIMPLE [(src1)x.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.val2 EXPRESSION [(src)x.FieldSchema(name:value, type:string, comment:default), (src)x1.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src1)x.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/bucketmapjoin1.q.out =================================================================== --- ql/src/test/results/clientpositive/bucketmapjoin1.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/bucketmapjoin1.q.out (working copy) @@ -117,10 +117,10 @@ Alias Bucket Base File Name Mapping: b {srcbucket20.txt=[srcbucket20.txt, srcbucket22.txt], srcbucket21.txt=[srcbucket21.txt, srcbucket23.txt]} Alias Bucket File Name Mapping: - b {pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket20.txt, pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket22.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket21.txt, pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket23.txt]} + b {pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket20.txt, pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket22.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket21.txt, pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket23.txt]} Alias Bucket Output File Name Mapping: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt 0 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt 1 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt 0 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt 1 Stage: Stage-1 Map Reduce @@ -169,9 +169,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-32-01_093_6438431130513992258/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-49-32_678_6312989829647628735/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-32-01_093_6438431130513992258/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-49-32_678_6312989829647628735/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -181,14 +181,14 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266321 + transient_lastDdlTime 1297244972 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -196,9 +196,9 @@ Map Reduce Local Work Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin [a] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin [a] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin Partition base file name: srcbucket_mapjoin input format: org.apache.hadoop.mapred.TextInputFormat @@ -210,12 +210,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/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin - name srcbucket_mapjoin + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin + name default.srcbucket_mapjoin serialization.ddl struct srcbucket_mapjoin { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266314 + transient_lastDdlTime 1297244967 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -227,15 +227,15 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin - name srcbucket_mapjoin + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin + name default.srcbucket_mapjoin serialization.ddl struct srcbucket_mapjoin { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266314 + transient_lastDdlTime 1297244967 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket_mapjoin - name: srcbucket_mapjoin + name: default.srcbucket_mapjoin + name: default.srcbucket_mapjoin Stage: Stage-5 Conditional Operator @@ -244,14 +244,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-32-01_093_6438431130513992258/-ext-10002 - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-32-01_093_6438431130513992258/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-49-32_678_6312989829647628735/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-49-32_678_6312989829647628735/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-32-01_093_6438431130513992258/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-49-32_678_6312989829647628735/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -261,28 +261,28 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266321 + transient_lastDdlTime 1297244972 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - tmp directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-32-01_093_6438431130513992258/-ext-10001 + name: default.bucketmapjoin_tmp_result + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-49-32_678_6312989829647628735/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-32-01_093_6438431130513992258/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-49-32_678_6312989829647628735/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-32-01_093_6438431130513992258/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-49-32_678_6312989829647628735/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-32-01_093_6438431130513992258/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-49-32_678_6312989829647628735/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -293,22 +293,22 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266321 + transient_lastDdlTime 1297244972 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-32-01_093_6438431130513992258/-ext-10002 [pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-32-01_093_6438431130513992258/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-49-32_678_6312989829647628735/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-49-32_678_6312989829647628735/-ext-10002] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-32-01_093_6438431130513992258/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-49-32_678_6312989829647628735/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -319,12 +319,12 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266321 + transient_lastDdlTime 1297244972 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -335,15 +335,15 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266321 + transient_lastDdlTime 1297244972 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result PREHOOK: query: insert overwrite table bucketmapjoin_tmp_result @@ -368,11 +368,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-32-19_323_1265717156673930447/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-49-41_006_6544875766730113016/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-32-19_323_1265717156673930447/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-49-41_006_6544875766730113016/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_tmp_result.key SIMPLE [(srcbucket_mapjoin)a.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_tmp_result.value1 SIMPLE [(srcbucket_mapjoin)a.FieldSchema(name:value, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_tmp_result.value2 SIMPLE [(srcbucket_mapjoin_part)b.FieldSchema(name:value, type:string, comment:null), ] @@ -421,11 +421,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-32-47_309_2016345755641040407/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-49-55_842_4468409903202031443/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-32-47_309_2016345755641040407/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-49-55_842_4468409903202031443/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value2 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value2, type:string, comment:null), ] @@ -464,14 +464,14 @@ PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_hash_result_1 PREHOOK: Input: default@bucketmapjoin_hash_result_2 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-32-58_179_7572353455658846533/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-50-03_913_4888047106730244039/-mr-10000 POSTHOOK: query: select a.key-b.key, a.value1-b.value1, a.value2-b.value2 from bucketmapjoin_hash_result_1 a left outer join bucketmapjoin_hash_result_2 b on a.key = b.key POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_hash_result_1 POSTHOOK: Input: default@bucketmapjoin_hash_result_2 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-32-58_179_7572353455658846533/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-50-03_913_4888047106730244039/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value2 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value2, type:string, comment:null), ] @@ -546,12 +546,12 @@ Alias Bucket Base File Name Mapping: a {srcbucket20.txt=[srcbucket20.txt], srcbucket21.txt=[srcbucket21.txt], srcbucket22.txt=[srcbucket20.txt], srcbucket23.txt=[srcbucket21.txt]} Alias Bucket File Name Mapping: - a {pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket20.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket21.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket22.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket23.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt]} + a {pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket20.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket21.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket22.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket23.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt]} Alias Bucket Output File Name Mapping: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket20.txt 0 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket21.txt 1 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket22.txt 2 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket23.txt 3 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket20.txt 0 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket21.txt 1 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket22.txt 2 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket23.txt 3 Stage: Stage-1 Map Reduce @@ -600,9 +600,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-33-03_655_3362045352453175604/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-07_674_2556263835625429394/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-33-03_655_3362045352453175604/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-07_674_2556263835625429394/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -612,8 +612,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 464 @@ -621,9 +621,9 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 8983 - transient_lastDdlTime 1289266367 + transient_lastDdlTime 1297244995 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -631,9 +631,9 @@ Map Reduce Local Work Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08 [b] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08 [b] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08 Partition base file name: ds=2008-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -647,13 +647,13 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part - name srcbucket_mapjoin_part + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08 + name default.srcbucket_mapjoin_part partition_columns ds serialization.ddl struct srcbucket_mapjoin_part { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266314 + transient_lastDdlTime 1297244967 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -665,16 +665,16 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part - name srcbucket_mapjoin_part + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part + name default.srcbucket_mapjoin_part partition_columns ds serialization.ddl struct srcbucket_mapjoin_part { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266314 + transient_lastDdlTime 1297244967 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket_mapjoin_part - name: srcbucket_mapjoin_part + name: default.srcbucket_mapjoin_part + name: default.srcbucket_mapjoin_part Stage: Stage-5 Conditional Operator @@ -683,14 +683,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-33-03_655_3362045352453175604/-ext-10002 - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-33-03_655_3362045352453175604/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-07_674_2556263835625429394/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-07_674_2556263835625429394/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-33-03_655_3362045352453175604/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-07_674_2556263835625429394/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -700,8 +700,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 464 @@ -709,23 +709,23 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 8983 - transient_lastDdlTime 1289266367 + transient_lastDdlTime 1297244995 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - tmp directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-33-03_655_3362045352453175604/-ext-10001 + name: default.bucketmapjoin_tmp_result + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-07_674_2556263835625429394/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-33-03_655_3362045352453175604/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-07_674_2556263835625429394/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-33-03_655_3362045352453175604/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-07_674_2556263835625429394/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-33-03_655_3362045352453175604/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-07_674_2556263835625429394/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -736,8 +736,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 464 @@ -745,17 +745,17 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 8983 - transient_lastDdlTime 1289266367 + transient_lastDdlTime 1297244995 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-33-03_655_3362045352453175604/-ext-10002 [pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-33-03_655_3362045352453175604/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-07_674_2556263835625429394/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-07_674_2556263835625429394/-ext-10002] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-33-03_655_3362045352453175604/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-07_674_2556263835625429394/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -766,8 +766,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 464 @@ -775,7 +775,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 8983 - transient_lastDdlTime 1289266367 + transient_lastDdlTime 1297244995 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -786,8 +786,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 464 @@ -795,10 +795,10 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 8983 - transient_lastDdlTime 1289266367 + transient_lastDdlTime 1297244995 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result PREHOOK: query: insert overwrite table bucketmapjoin_tmp_result @@ -835,11 +835,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-33-23_257_4779027411421792236/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-50-15_671_3917647275162919380/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-33-23_257_4779027411421792236/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-50-15_671_3917647275162919380/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value2 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value2, type:string, comment:null), ] @@ -924,11 +924,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-33-50_591_5983690384247835143/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-50-30_623_6381233594467632299/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-33-50_591_5983690384247835143/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-50-30_623_6381233594467632299/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] @@ -991,14 +991,14 @@ PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_hash_result_1 PREHOOK: Input: default@bucketmapjoin_hash_result_2 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-34-03_738_8277069614113731460/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-50-38_742_3642187674653525110/-mr-10000 POSTHOOK: query: select a.key-b.key, a.value1-b.value1, a.value2-b.value2 from bucketmapjoin_hash_result_1 a left outer join bucketmapjoin_hash_result_2 b on a.key = b.key POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_hash_result_1 POSTHOOK: Input: default@bucketmapjoin_hash_result_2 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-34-03_738_8277069614113731460/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-50-38_742_3642187674653525110/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] Index: ql/src/test/results/clientpositive/input_columnarserde.q.out =================================================================== --- ql/src/test/results/clientpositive/input_columnarserde.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input_columnarserde.q.out (working copy) @@ -75,7 +75,7 @@ input format: org.apache.hadoop.hive.ql.io.RCFileInputFormat output format: org.apache.hadoop.hive.ql.io.RCFileOutputFormat serde: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe - name: input_columnarserde + name: default.input_columnarserde Stage: Stage-0 Move Operator @@ -85,7 +85,7 @@ input format: org.apache.hadoop.hive.ql.io.RCFileInputFormat output format: org.apache.hadoop.hive.ql.io.RCFileOutputFormat serde: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe - name: input_columnarserde + name: default.input_columnarserde Stage: Stage-2 Stats-Aggr Operator @@ -109,11 +109,11 @@ PREHOOK: query: SELECT input_columnarserde.* FROM input_columnarserde DISTRIBUTE BY 1 PREHOOK: type: QUERY PREHOOK: Input: default@input_columnarserde -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-32-58_757_857951464814038304/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-25-00_624_6738554084730826138/-mr-10000 POSTHOOK: query: SELECT input_columnarserde.* FROM input_columnarserde DISTRIBUTE BY 1 POSTHOOK: type: QUERY POSTHOOK: Input: default@input_columnarserde -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-32-58_757_857951464814038304/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-25-00_624_6738554084730826138/-mr-10000 POSTHOOK: Lineage: input_columnarserde.a SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lint, type:array, comment:from deserializer), ] POSTHOOK: Lineage: input_columnarserde.b SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lstring, type:array, comment:from deserializer), ] POSTHOOK: Lineage: input_columnarserde.c SIMPLE [(src_thrift)src_thrift.FieldSchema(name:mstringstring, type:map, comment:from deserializer), ] @@ -133,11 +133,11 @@ PREHOOK: query: SELECT input_columnarserde.a[0], input_columnarserde.b[0], input_columnarserde.c['key2'], input_columnarserde.d, input_columnarserde.e FROM input_columnarserde DISTRIBUTE BY 1 PREHOOK: type: QUERY PREHOOK: Input: default@input_columnarserde -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-33-02_404_3492935474356171782/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-25-04_156_1050749753073890108/-mr-10000 POSTHOOK: query: SELECT input_columnarserde.a[0], input_columnarserde.b[0], input_columnarserde.c['key2'], input_columnarserde.d, input_columnarserde.e FROM input_columnarserde DISTRIBUTE BY 1 POSTHOOK: type: QUERY POSTHOOK: Input: default@input_columnarserde -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-33-02_404_3492935474356171782/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-25-04_156_1050749753073890108/-mr-10000 POSTHOOK: Lineage: input_columnarserde.a SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lint, type:array, comment:from deserializer), ] POSTHOOK: Lineage: input_columnarserde.b SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lstring, type:array, comment:from deserializer), ] POSTHOOK: Lineage: input_columnarserde.c SIMPLE [(src_thrift)src_thrift.FieldSchema(name:mstringstring, type:map, comment:from deserializer), ] Index: ql/src/test/results/clientpositive/groupby10.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby10.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby10.q.out (working copy) @@ -97,7 +97,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-12-47_850_4438080186685603592/-mr-10004 + file:/tmp/sdong/hive_2011-02-09_02-06-22_683_8987521713121108870/-mr-10004 Reduce Output Operator key expressions: expr: _col0 @@ -148,7 +148,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -158,7 +158,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-4 Stats-Aggr Operator @@ -166,7 +166,7 @@ Stage: Stage-5 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-12-47_850_4438080186685603592/-mr-10005 + file:/tmp/sdong/hive_2011-02-09_02-06-22_683_8987521713121108870/-mr-10005 Reduce Output Operator key expressions: expr: _col0 @@ -217,7 +217,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-1 Move Operator @@ -227,7 +227,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-6 Stats-Aggr Operator @@ -256,11 +256,11 @@ PREHOOK: query: SELECT * from dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-13-04_432_5505854178165228004/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-06-43_005_4430494134760098404/-mr-10000 POSTHOOK: query: SELECT * from dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-13-04_432_5505854178165228004/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-06-43_005_4430494134760098404/-mr-10000 POSTHOOK: Lineage: dest1.key SIMPLE [(input)input.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: dest1.val1 EXPRESSION [(input)input.FieldSchema(name:value, type:string, comment:null), ] POSTHOOK: Lineage: dest1.val2 EXPRESSION [(input)input.FieldSchema(name:value, type:string, comment:null), ] @@ -290,11 +290,11 @@ PREHOOK: query: SELECT * from dest2 PREHOOK: type: QUERY PREHOOK: Input: default@dest2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-13-04_860_4545965166949742953/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-06-43_309_2151777558485248840/-mr-10000 POSTHOOK: query: SELECT * from dest2 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-13-04_860_4545965166949742953/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-06-43_309_2151777558485248840/-mr-10000 POSTHOOK: Lineage: dest1.key SIMPLE [(input)input.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: dest1.val1 EXPRESSION [(input)input.FieldSchema(name:value, type:string, comment:null), ] POSTHOOK: Lineage: dest1.val2 EXPRESSION [(input)input.FieldSchema(name:value, type:string, comment:null), ] Index: ql/src/test/results/clientpositive/mapreduce6.q.out =================================================================== --- ql/src/test/results/clientpositive/mapreduce6.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/mapreduce6.q.out (working copy) @@ -85,7 +85,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -95,7 +95,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -124,11 +124,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-03-43_918_4177508543694288198/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-05-41_208_521550919349184379/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-03-43_918_4177508543694288198/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-05-41_208_521550919349184379/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.one EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.ten EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/groupby1_noskew.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby1_noskew.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby1_noskew.q.out (working copy) @@ -74,7 +74,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_g1 + name: default.dest_g1 Stage: Stage-0 Move Operator @@ -84,7 +84,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_g1 + name: default.dest_g1 Stage: Stage-2 Stats-Aggr Operator @@ -103,11 +103,11 @@ PREHOOK: query: SELECT dest_g1.* FROM dest_g1 PREHOOK: type: QUERY PREHOOK: Input: default@dest_g1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-14-13_384_3634246862771804694/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-07-44_836_5760313354136524741/-mr-10000 POSTHOOK: query: SELECT dest_g1.* FROM dest_g1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_g1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-14-13_384_3634246862771804694/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-07-44_836_5760313354136524741/-mr-10000 POSTHOOK: Lineage: dest_g1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_g1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] 0 0.0 Index: ql/src/test/results/clientpositive/stats13.q.out =================================================================== --- ql/src/test/results/clientpositive/stats13.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/stats13.q.out (working copy) @@ -43,7 +43,7 @@ POSTHOOK: Lineage: analyze_srcpart PARTITION(ds=2008-04-09,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: analyze_srcpart PARTITION(ds=2008-04-09,hr=12).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] ABSTRACT SYNTAX TREE: - (TOK_ANALYZE (TOK_TABTYPE analyze_srcpart (TOK_PARTSPEC (TOK_PARTVAL ds '2008-04-08') (TOK_PARTVAL hr 11)))) + (TOK_ANALYZE (TOK_TAB analyze_srcpart (TOK_PARTSPEC (TOK_PARTVAL ds '2008-04-08') (TOK_PARTVAL hr 11)))) STAGE DEPENDENCIES: Stage-0 is a root stage @@ -60,9 +60,9 @@ GatherStats: true Needs Tagging: false Path -> Alias: - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=11 [analyze_srcpart] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=11 [analyze_srcpart] Path -> Partition: - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=11 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -76,13 +76,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart - name analyze_srcpart + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=11 + name default.analyze_srcpart partition_columns ds/hr serialization.ddl struct analyze_srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1290146558 + transient_lastDdlTime 1297252003 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -93,16 +93,16 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart - name analyze_srcpart + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart + name default.analyze_srcpart partition_columns ds/hr serialization.ddl struct analyze_srcpart { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1290146558 + transient_lastDdlTime 1297252003 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: analyze_srcpart - name: analyze_srcpart + name: default.analyze_srcpart + name: default.analyze_srcpart Stage: Stage-1 Stats-Aggr Operator @@ -144,7 +144,7 @@ ds string hr string -Detailed Table Information Table(tableName:analyze_srcpart, dbName:default, owner:null, createTime:1290146558, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{numPartitions=1, numFiles=1, transient_lastDdlTime=1290146579, numRows=500, totalSize=5812}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:analyze_srcpart, dbName:default, owner:null, createTime:1297252003, lastAccessTime:1297250836, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{numPartitions=1, numFiles=1, transient_lastDdlTime=1297252014, numRows=500, totalSize=5812}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) PREHOOK: query: desc extended analyze_srcpart partition (ds='2008-04-08', hr=11) PREHOOK: type: DESCTABLE POSTHOOK: query: desc extended analyze_srcpart partition (ds='2008-04-08', hr=11) @@ -162,7 +162,7 @@ ds string hr string -Detailed Partition Information Partition(values:[2008-04-08, 11], dbName:default, tableName:analyze_srcpart, createTime:1290146572, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=11, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1290146579, numRows=500, totalSize=5812}) +Detailed Partition Information Partition(values:[2008-04-08, 11], dbName:default, tableName:analyze_srcpart, createTime:1297252009, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=11, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1297252014, numRows=500, totalSize=5812}) PREHOOK: query: desc extended analyze_srcpart partition (ds='2008-04-08', hr=12) PREHOOK: type: DESCTABLE POSTHOOK: query: desc extended analyze_srcpart partition (ds='2008-04-08', hr=12) @@ -180,7 +180,7 @@ ds string hr string -Detailed Partition Information Partition(values:[2008-04-08, 12], dbName:default, tableName:analyze_srcpart, createTime:1290146572, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=12, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{transient_lastDdlTime=1290146572}) +Detailed Partition Information Partition(values:[2008-04-08, 12], dbName:default, tableName:analyze_srcpart, createTime:1297252009, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=12, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{transient_lastDdlTime=1297252009}) PREHOOK: query: desc extended analyze_srcpart partition (ds='2008-04-09', hr=11) PREHOOK: type: DESCTABLE POSTHOOK: query: desc extended analyze_srcpart partition (ds='2008-04-09', hr=11) @@ -198,7 +198,7 @@ ds string hr string -Detailed Partition Information Partition(values:[2008-04-09, 11], dbName:default, tableName:analyze_srcpart, createTime:1290146573, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-09/hr=11, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{transient_lastDdlTime=1290146573}) +Detailed Partition Information Partition(values:[2008-04-09, 11], dbName:default, tableName:analyze_srcpart, createTime:1297252009, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-09/hr=11, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{transient_lastDdlTime=1297252009}) PREHOOK: query: desc extended analyze_srcpart partition (ds='2008-04-09', hr=12) PREHOOK: type: DESCTABLE POSTHOOK: query: desc extended analyze_srcpart partition (ds='2008-04-09', hr=12) @@ -216,7 +216,7 @@ ds string hr string -Detailed Partition Information Partition(values:[2008-04-09, 12], dbName:default, tableName:analyze_srcpart, createTime:1290146573, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-09/hr=12, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{transient_lastDdlTime=1290146573}) +Detailed Partition Information Partition(values:[2008-04-09, 12], dbName:default, tableName:analyze_srcpart, createTime:1297252009, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-09/hr=12, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{transient_lastDdlTime=1297252009}) PREHOOK: query: create table analyze_srcpart2 like analyze_srcpart PREHOOK: type: CREATETABLE POSTHOOK: query: create table analyze_srcpart2 like analyze_srcpart @@ -247,4 +247,4 @@ ds string hr string -Detailed Table Information Table(tableName:analyze_srcpart2, dbName:default, owner:null, createTime:1290146580, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart2, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{transient_lastDdlTime=1290146580}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:analyze_srcpart2, dbName:default, owner:null, createTime:1297252015, lastAccessTime:1297250836, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart2, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{transient_lastDdlTime=1297252015}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) Index: ql/src/test/results/clientpositive/sample10.q.out =================================================================== --- ql/src/test/results/clientpositive/sample10.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/sample10.q.out (working copy) @@ -104,12 +104,12 @@ type: bigint Needs Tagging: false Path -> Alias: - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpartbucket/ds=2008-04-08/hr=11/000000_0 [srcpartbucket] - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpartbucket/ds=2008-04-08/hr=12/000000_0 [srcpartbucket] - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpartbucket/ds=2008-04-09/hr=11/000000_0 [srcpartbucket] - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpartbucket/ds=2008-04-09/hr=12/000000_0 [srcpartbucket] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpartbucket/ds=2008-04-08/hr=11/000000_0 [srcpartbucket] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpartbucket/ds=2008-04-08/hr=12/000000_0 [srcpartbucket] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpartbucket/ds=2008-04-09/hr=11/000000_0 [srcpartbucket] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpartbucket/ds=2008-04-09/hr=12/000000_0 [srcpartbucket] Path -> Partition: - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpartbucket/ds=2008-04-08/hr=11/000000_0 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpartbucket/ds=2008-04-08/hr=11/000000_0 Partition base file name: 000000_0 input format: org.apache.hadoop.hive.ql.io.RCFileInputFormat @@ -124,8 +124,8 @@ columns.types string:string file.inputformat org.apache.hadoop.hive.ql.io.RCFileInputFormat file.outputformat org.apache.hadoop.hive.ql.io.RCFileOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpartbucket - name srcpartbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpartbucket/ds=2008-04-08/hr=11 + name default.srcpartbucket numFiles 16 numPartitions 4 numRows 40 @@ -134,7 +134,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe totalSize 2748 - transient_lastDdlTime 1289454630 + transient_lastDdlTime 1297250846 serde: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe input format: org.apache.hadoop.hive.ql.io.RCFileInputFormat @@ -146,8 +146,8 @@ columns.types string:string file.inputformat org.apache.hadoop.hive.ql.io.RCFileInputFormat file.outputformat org.apache.hadoop.hive.ql.io.RCFileOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpartbucket - name srcpartbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpartbucket + name default.srcpartbucket numFiles 16 numPartitions 4 numRows 40 @@ -156,11 +156,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe totalSize 2748 - transient_lastDdlTime 1289454630 + transient_lastDdlTime 1297250846 serde: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe - name: srcpartbucket - name: srcpartbucket - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpartbucket/ds=2008-04-08/hr=12/000000_0 + name: default.srcpartbucket + name: default.srcpartbucket + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpartbucket/ds=2008-04-08/hr=12/000000_0 Partition base file name: 000000_0 input format: org.apache.hadoop.hive.ql.io.RCFileInputFormat @@ -175,8 +175,8 @@ columns.types string:string file.inputformat org.apache.hadoop.hive.ql.io.RCFileInputFormat file.outputformat org.apache.hadoop.hive.ql.io.RCFileOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpartbucket - name srcpartbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpartbucket/ds=2008-04-08/hr=12 + name default.srcpartbucket numFiles 16 numPartitions 4 numRows 40 @@ -185,7 +185,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe totalSize 2748 - transient_lastDdlTime 1289454630 + transient_lastDdlTime 1297250846 serde: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe input format: org.apache.hadoop.hive.ql.io.RCFileInputFormat @@ -197,8 +197,8 @@ columns.types string:string file.inputformat org.apache.hadoop.hive.ql.io.RCFileInputFormat file.outputformat org.apache.hadoop.hive.ql.io.RCFileOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpartbucket - name srcpartbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpartbucket + name default.srcpartbucket numFiles 16 numPartitions 4 numRows 40 @@ -207,11 +207,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe totalSize 2748 - transient_lastDdlTime 1289454630 + transient_lastDdlTime 1297250846 serde: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe - name: srcpartbucket - name: srcpartbucket - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpartbucket/ds=2008-04-09/hr=11/000000_0 + name: default.srcpartbucket + name: default.srcpartbucket + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpartbucket/ds=2008-04-09/hr=11/000000_0 Partition base file name: 000000_0 input format: org.apache.hadoop.hive.ql.io.RCFileInputFormat @@ -226,8 +226,8 @@ columns.types string:string file.inputformat org.apache.hadoop.hive.ql.io.RCFileInputFormat file.outputformat org.apache.hadoop.hive.ql.io.RCFileOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpartbucket - name srcpartbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpartbucket/ds=2008-04-09/hr=11 + name default.srcpartbucket numFiles 16 numPartitions 4 numRows 40 @@ -236,7 +236,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe totalSize 2748 - transient_lastDdlTime 1289454630 + transient_lastDdlTime 1297250846 serde: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe input format: org.apache.hadoop.hive.ql.io.RCFileInputFormat @@ -248,8 +248,8 @@ columns.types string:string file.inputformat org.apache.hadoop.hive.ql.io.RCFileInputFormat file.outputformat org.apache.hadoop.hive.ql.io.RCFileOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpartbucket - name srcpartbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpartbucket + name default.srcpartbucket numFiles 16 numPartitions 4 numRows 40 @@ -258,11 +258,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe totalSize 2748 - transient_lastDdlTime 1289454630 + transient_lastDdlTime 1297250846 serde: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe - name: srcpartbucket - name: srcpartbucket - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpartbucket/ds=2008-04-09/hr=12/000000_0 + name: default.srcpartbucket + name: default.srcpartbucket + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpartbucket/ds=2008-04-09/hr=12/000000_0 Partition base file name: 000000_0 input format: org.apache.hadoop.hive.ql.io.RCFileInputFormat @@ -277,8 +277,8 @@ columns.types string:string file.inputformat org.apache.hadoop.hive.ql.io.RCFileInputFormat file.outputformat org.apache.hadoop.hive.ql.io.RCFileOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpartbucket - name srcpartbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpartbucket/ds=2008-04-09/hr=12 + name default.srcpartbucket numFiles 16 numPartitions 4 numRows 40 @@ -287,7 +287,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe totalSize 2748 - transient_lastDdlTime 1289454630 + transient_lastDdlTime 1297250846 serde: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe input format: org.apache.hadoop.hive.ql.io.RCFileInputFormat @@ -299,8 +299,8 @@ columns.types string:string file.inputformat org.apache.hadoop.hive.ql.io.RCFileInputFormat file.outputformat org.apache.hadoop.hive.ql.io.RCFileOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/srcpartbucket - name srcpartbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpartbucket + name default.srcpartbucket numFiles 16 numPartitions 4 numRows 40 @@ -309,10 +309,10 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe totalSize 2748 - transient_lastDdlTime 1289454630 + transient_lastDdlTime 1297250846 serde: org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe - name: srcpartbucket - name: srcpartbucket + name: default.srcpartbucket + name: default.srcpartbucket Reduce Operator Tree: Group By Operator aggregations: @@ -333,9 +333,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/njain/hive_2010-11-10_21-50-30_237_6456899979504390679/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-27-26_359_4281188651138372625/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/njain/hive_2010-11-10_21-50-30_237_6456899979504390679/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-27-26_359_4281188651138372625/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -358,13 +358,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/njain/hive_2010-11-10_21-50-31_589_3688459449074450497/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-27-27_337_1708003594234765539/-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/sdong/hive_2011-02-09_03-27-27_337_1708003594234765539/-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), ] @@ -381,13 +382,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/njain/hive_2010-11-10_21-50-40_846_194213387409754762/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-27-32_391_4875818022446435481/-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/sdong/hive_2011-02-09_03-27-32_391_4875818022446435481/-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,13 +406,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/njain/hive_2010-11-10_21-50-55_151_7435896620054029141/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-27-38_794_8159397156817346858/-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/sdong/hive_2011-02-09_03-27-38_794_8159397156817346858/-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/join8.q.out =================================================================== --- ql/src/test/results/clientpositive/join8.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join8.q.out (working copy) @@ -162,7 +162,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -172,7 +172,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -217,11 +217,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-44-07_014_1922499990883267735/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-34-43_620_3514245707752641613/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-44-07_014_1922499990883267735/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-34-43_620_3514245707752641613/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c2 SIMPLE [(src)src1.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c3 EXPRESSION [(src)src2.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 1068243) +++ ql/src/test/results/clientpositive/rand_partitionpruner1.q.out (working copy) @@ -34,9 +34,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/nzhang/hive_2010-09-14_17-19-52_616_4921474467166008696/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-24-32_132_6064959504749612635/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/nzhang/hive_2010-09-14_17-19-52_616_4921474467166008696/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-24-32_132_6064959504749612635/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -49,9 +49,9 @@ MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src [src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [src] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -62,12 +62,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284504429 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -78,15 +78,15 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284504429 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src + name: default.src + name: default.src Stage: Stage-0 Fetch Operator @@ -96,11 +96,11 @@ PREHOOK: query: select * from src where rand(1) < 0.1 PREHOOK: type: QUERY PREHOOK: Input: default@src -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-19-52_716_1485476896153547687/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-24-32_218_6989709950748232558/-mr-10000 POSTHOOK: query: select * from src where rand(1) < 0.1 POSTHOOK: type: QUERY POSTHOOK: Input: default@src -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-19-52_716_1485476896153547687/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-24-32_218_6989709950748232558/-mr-10000 409 val_409 429 val_429 209 val_209 Index: ql/src/test/results/clientpositive/groupby1_map_skew.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby1_map_skew.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby1_map_skew.q.out (working copy) @@ -73,7 +73,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-13-54_781_8312436605720387245/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-07-26_247_6774779275282874647/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -117,7 +117,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -127,7 +127,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-3 Stats-Aggr Operator @@ -146,11 +146,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-14-04_746_1589757391854107647/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-07-39_389_1728031490919904550/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-14-04_746_1589757391854107647/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-07-39_389_1728031490919904550/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] 0 0.0 Index: ql/src/test/results/clientpositive/input11.q.out =================================================================== --- ql/src/test/results/clientpositive/input11.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input11.q.out (working copy) @@ -58,7 +58,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Conditional Operator @@ -67,7 +67,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-26-20_753_2692406317545606269/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-19-42_752_2779384345125171405/-ext-10000 Stage: Stage-0 Move Operator @@ -77,7 +77,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -85,7 +85,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-26-20_753_2692406317545606269/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-19-42_752_2779384345125171405/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -93,7 +93,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM src @@ -111,11 +111,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-26-26_456_2545394700696109733/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-19-47_571_3681896272963274387/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-26-26_456_2545394700696109733/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-19-47_571_3681896272963274387/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] 86 val_86 Index: ql/src/test/results/clientpositive/groupby6_noskew.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby6_noskew.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby6_noskew.q.out (working copy) @@ -60,7 +60,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -70,7 +70,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -90,11 +90,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-17-20_070_3822618529499763976/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-11-28_067_70587940671630406/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-17-20_070_3822618529499763976/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-11-28_067_70587940671630406/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] 0 1 Index: ql/src/test/results/clientpositive/input34.q.out =================================================================== --- ql/src/test/results/clientpositive/input34.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input34.q.out (working copy) @@ -72,7 +72,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Conditional Operator @@ -81,7 +81,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-29-47_532_7242599438455938197/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-22-22_259_3254667424763992291/-ext-10000 Stage: Stage-0 Move Operator @@ -91,7 +91,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -99,7 +99,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-29-47_532_7242599438455938197/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-22-22_259_3254667424763992291/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -107,7 +107,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM ( @@ -135,11 +135,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-29-53_325_8043851611952541282/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-22-27_146_1585657236382454155/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-29-53_325_8043851611952541282/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-22-27_146_1585657236382454155/-mr-10000 POSTHOOK: Lineage: dest1.key SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] 238 val_238 Index: ql/src/test/results/clientpositive/auto_join5.q.out =================================================================== --- ql/src/test/results/clientpositive/auto_join5.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/auto_join5.q.out (working copy) @@ -156,7 +156,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Local Work: Map Reduce Local Work @@ -168,7 +168,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -289,7 +289,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM ( @@ -331,11 +331,11 @@ PREHOOK: query: SELECT sum(hash(dest1.c1,dest1.c2,dest1.c3,dest1.c4)) FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-15_16-50-10_093_3777419778879975109/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-31-06_230_6871895575664629888/-mr-10000 POSTHOOK: query: SELECT sum(hash(dest1.c1,dest1.c2,dest1.c3,dest1.c4)) FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-15_16-50-10_093_3777419778879975109/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-31-06_230_6871895575664629888/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c2 SIMPLE [(src)src1.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c3 EXPRESSION [(src)src2.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/union6.q.out =================================================================== --- ql/src/test/results/clientpositive/union6.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/union6.q.out (working copy) @@ -78,7 +78,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_18-21-50_637_3032457585026659835/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_04-18-50_578_9133855276350534288/-mr-10002 Union Select Operator expressions: @@ -94,8 +94,8 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable - file:/tmp/nzhang/hive_2010-09-14_18-21-50_637_3032457585026659835/-mr-10004 + name: default.tmptable + file:/tmp/sdong/hive_2011-02-09_04-18-50_578_9133855276350534288/-mr-10004 Union Select Operator expressions: @@ -111,7 +111,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable + name: default.tmptable Stage: Stage-6 Conditional Operator @@ -120,7 +120,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_18-21-50_637_3032457585026659835/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_04-18-50_578_9133855276350534288/-ext-10000 Stage: Stage-0 Move Operator @@ -130,7 +130,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable + name: default.tmptable Stage: Stage-3 Stats-Aggr Operator @@ -138,7 +138,7 @@ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_18-21-50_637_3032457585026659835/-ext-10003 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_04-18-50_578_9133855276350534288/-ext-10003 File Output Operator compressed: false GlobalTableId: 0 @@ -146,7 +146,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable + name: default.tmptable Stage: Stage-7 Map Reduce @@ -190,11 +190,11 @@ PREHOOK: query: select * from tmptable x sort by x.key, x.value PREHOOK: type: QUERY PREHOOK: Input: default@tmptable -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-22-07_181_1811819841284617502/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-19-03_631_4994727959292128573/-mr-10000 POSTHOOK: query: select * from tmptable x sort by x.key, x.value POSTHOOK: type: QUERY POSTHOOK: Input: default@tmptable -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-22-07_181_1811819841284617502/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-19-03_631_4994727959292128573/-mr-10000 POSTHOOK: Lineage: tmptable.key EXPRESSION [(src1)s2.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: tmptable.value EXPRESSION [(src)s1.null, (src1)s2.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/mapreduce1.q.out =================================================================== --- ql/src/test/results/clientpositive/mapreduce1.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/mapreduce1.q.out (working copy) @@ -92,7 +92,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -102,7 +102,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -133,11 +133,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-02-58_524_122150043669563126/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-05-07_563_8763243693249447/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-02-58_524_122150043669563126/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-05-07_563_8763243693249447/-mr-10000 POSTHOOK: Lineage: dest1.key SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.one SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.ten SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/bucket2.q.out =================================================================== --- ql/src/test/results/clientpositive/bucket2.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/bucket2.q.out (working copy) @@ -47,9 +47,9 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src [src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [src] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -60,12 +60,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284504429 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -76,15 +76,15 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284504429 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src + name: default.src + name: default.src Reduce Operator Tree: Extract Select Operator @@ -97,9 +97,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_15-50-13_088_4215892022529804638/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-34_988_4552647155085903710/-ext-10000 NumFilesPerFileSink: 2 - Stats Publishing Key Prefix: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_15-50-13_088_4215892022529804638/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-34_988_4552647155085903710/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -110,14 +110,14 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/bucket2_1 - name bucket2_1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucket2_1 + name default.bucket2_1 serialization.ddl struct bucket2_1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504613 + transient_lastDdlTime 1297244854 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucket2_1 + name: default.bucket2_1 TotalFiles: 2 GatherStats: true MultiFileSpray: true @@ -126,7 +126,7 @@ Move Operator tables: replace: true - source: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_15-50-13_088_4215892022529804638/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-34_988_4552647155085903710/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -137,19 +137,19 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/bucket2_1 - name bucket2_1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucket2_1 + name default.bucket2_1 serialization.ddl struct bucket2_1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504613 + transient_lastDdlTime 1297244854 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucket2_1 - tmp directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_15-50-13_088_4215892022529804638/-ext-10001 + name: default.bucket2_1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-34_988_4552647155085903710/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_15-50-13_088_4215892022529804638/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-34_988_4552647155085903710/-ext-10000/ PREHOOK: query: insert overwrite table bucket2_1 @@ -229,11 +229,11 @@ PREHOOK: query: select * from bucket2_1 tablesample (bucket 1 out of 2) s order by key PREHOOK: type: QUERY PREHOOK: Input: default@bucket2_1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_15-50-20_404_4866989336023198470/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-47-41_306_3747626683607652694/-mr-10000 POSTHOOK: query: select * from bucket2_1 tablesample (bucket 1 out of 2) s order by key POSTHOOK: type: QUERY POSTHOOK: Input: default@bucket2_1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_15-50-20_404_4866989336023198470/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-47-41_306_3747626683607652694/-mr-10000 POSTHOOK: Lineage: bucket2_1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: bucket2_1.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] 0 val_0 Index: ql/src/test/results/clientpositive/input20.q.out =================================================================== --- ql/src/test/results/clientpositive/input20.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input20.q.out (working copy) @@ -100,7 +100,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -110,7 +110,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -149,11 +149,11 @@ PREHOOK: query: SELECT * FROM dest1 SORT BY key, value PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/jssarma/hive_2010-10-04_16-33-06_819_3128330973662451588/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-20-59_405_8412535835402418669/-mr-10000 POSTHOOK: query: SELECT * FROM dest1 SORT BY key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/jssarma/hive_2010-10-04_16-33-06_819_3128330973662451588/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-20-59_405_8412535835402418669/-mr-10000 POSTHOOK: Lineage: dest1.key SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), ] 1 105_105 Index: ql/src/test/results/clientpositive/input14_limit.q.out =================================================================== --- ql/src/test/results/clientpositive/input14_limit.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input14_limit.q.out (working copy) @@ -76,7 +76,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-27-07_332_2694319864765120880/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-20-15_382_9025604362858092181/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -119,7 +119,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -129,7 +129,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-3 Stats-Aggr Operator @@ -160,11 +160,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-27-18_010_425020749270297262/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-20-24_244_3374182343581829902/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-27-18_010_425020749270297262/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-20-24_244_3374182343581829902/-mr-10000 POSTHOOK: Lineage: dest1.key SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] 0 val_0 Index: ql/src/test/results/clientpositive/load_dyn_part9.q.out =================================================================== --- ql/src/test/results/clientpositive/load_dyn_part9.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/load_dyn_part9.q.out (working copy) @@ -20,7 +20,7 @@ ds string hr string -Detailed Table Information Table(tableName:nzhang_part9, dbName:default, owner:null, createTime:1289454094, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/nzhang_part9, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{transient_lastDdlTime=1289454094}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:nzhang_part9, dbName:default, owner:null, createTime:1297249256, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_part9, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{transient_lastDdlTime=1297249256}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) PREHOOK: query: explain from srcpart insert overwrite table nzhang_part9 partition (ds, hr) select key, value, ds, hr where ds <= '2008-04-08' @@ -66,7 +66,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part9 + name: default.nzhang_part9 Stage: Stage-0 Move Operator @@ -79,7 +79,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part9 + name: default.nzhang_part9 Stage: Stage-2 Stats-Aggr Operator @@ -116,11 +116,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@nzhang_part9@ds=2008-04-08/hr=11 PREHOOK: Input: default@nzhang_part9@ds=2008-04-08/hr=12 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-10_21-41-44_795_5284431073587471640/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-01-02_433_1771299425553656712/-mr-10000 POSTHOOK: query: select * from nzhang_part9 where ds is not null and hr is not null POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_part9@ds=2008-04-08/hr=11 POSTHOOK: Input: default@nzhang_part9@ds=2008-04-08/hr=12 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-01-02_433_1771299425553656712/-mr-10000 POSTHOOK: Lineage: nzhang_part9 PARTITION(ds=2008-04-08,hr=11).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part9 PARTITION(ds=2008-04-08,hr=11).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part9 PARTITION(ds=2008-04-08,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/louter_join_ppr.q.out =================================================================== --- ql/src/test/results/clientpositive/louter_join_ppr.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/louter_join_ppr.q.out (working copy) @@ -75,11 +75,11 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/src [a] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [b] - pfile:/data/users/sdong/www/hive-trunk/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/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] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -90,12 +90,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/hive-trunk/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389296 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -106,16 +106,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/hive-trunk/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389296 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + 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 Partition base file name: hr=11 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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -146,17 +146,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -170,13 +170,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -187,16 +187,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Join Operator condition map: @@ -225,9 +225,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-10-29_16-06-41_990_6512967214645100591/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-02-28_913_3227476574308012656/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-10-29_16-06-41_990_6512967214645100591/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-02-28_913_3227476574308012656/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -255,7 +255,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_2010-10-29_16-06-42_134_465418546561702847/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-02-29_064_7851182133338801/-mr-10000 POSTHOOK: query: FROM src a LEFT OUTER JOIN @@ -267,7 +267,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_2010-10-29_16-06-42_134_465418546561702847/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-02-29_064_7851182133338801/-mr-10000 17 val_17 17 val_17 17 val_17 17 val_17 18 val_18 18 val_18 @@ -354,13 +354,13 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/src [b] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [a] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [a] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [a] + 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] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -371,12 +371,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/hive-trunk/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389296 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -387,16 +387,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/hive-trunk/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389296 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + 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 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -410,13 +410,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -427,17 +427,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -451,13 +451,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -468,17 +468,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + 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 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -492,13 +492,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -509,17 +509,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -533,13 +533,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -550,16 +550,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Join Operator condition map: @@ -591,9 +591,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-10-29_16-06-47_143_8937963268054949286/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-02-33_208_6860794240626728296/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-10-29_16-06-47_143_8937963268054949286/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-02-33_208_6860794240626728296/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -623,7 +623,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_2010-10-29_16-06-47_298_4085649997392948484/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-02-33_381_3606318093374730543/-mr-10000 POSTHOOK: query: FROM srcpart a LEFT OUTER JOIN @@ -637,7 +637,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_2010-10-29_16-06-47_298_4085649997392948484/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-02-33_381_3606318093374730543/-mr-10000 17 val_17 17 val_17 17 val_17 17 val_17 18 val_18 18 val_18 @@ -724,13 +724,13 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/src [a] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [b] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [b] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [b] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [b] + 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] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -741,12 +741,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/hive-trunk/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389296 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -757,16 +757,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/hive-trunk/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389296 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + 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 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -780,13 +780,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -797,17 +797,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -821,13 +821,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -838,17 +838,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + 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 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -862,13 +862,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -879,17 +879,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -903,13 +903,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -920,16 +920,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Join Operator condition map: @@ -958,9 +958,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-10-29_16-06-52_909_8305503230186660388/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-02-38_060_331024966166862200/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-10-29_16-06-52_909_8305503230186660388/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-02-38_060_331024966166862200/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -990,7 +990,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_2010-10-29_16-06-53_063_836305500143994651/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-02-38_219_24119547417060666/-mr-10000 POSTHOOK: query: FROM src a LEFT OUTER JOIN @@ -1004,7 +1004,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_2010-10-29_16-06-53_063_836305500143994651/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-02-38_219_24119547417060666/-mr-10000 17 val_17 17 val_17 17 val_17 17 val_17 18 val_18 18 val_18 @@ -1091,11 +1091,11 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/src [b] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] - pfile:/data/users/sdong/www/hive-trunk/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/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] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -1106,12 +1106,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/hive-trunk/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389296 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1122,16 +1122,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/hive-trunk/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389296 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + 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 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1145,13 +1145,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1162,17 +1162,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1186,13 +1186,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1203,16 +1203,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Join Operator condition map: @@ -1241,9 +1241,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-10-29_16-06-58_602_1963494662588653740/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-02-43_945_240095365297343608/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-10-29_16-06-58_602_1963494662588653740/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-02-43_945_240095365297343608/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1271,7 +1271,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_2010-10-29_16-06-58_746_6574646466183203315/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-02-44_095_8987725619718725659/-mr-10000 POSTHOOK: query: FROM srcpart a LEFT OUTER JOIN @@ -1283,7 +1283,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_2010-10-29_16-06-58_746_6574646466183203315/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-02-44_095_8987725619718725659/-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/groupby8_map.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby8_map.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby8_map.q.out (working copy) @@ -85,7 +85,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-18-58_949_4004968194344583164/-mr-10004 + file:/tmp/sdong/hive_2011-02-09_02-12-40_935_3905656645582334434/-mr-10004 Reduce Output Operator key expressions: expr: _col0 @@ -129,7 +129,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -139,7 +139,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-4 Stats-Aggr Operator @@ -147,7 +147,7 @@ Stage: Stage-5 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-18-58_949_4004968194344583164/-mr-10005 + file:/tmp/sdong/hive_2011-02-09_02-12-40_935_3905656645582334434/-mr-10005 Reduce Output Operator key expressions: expr: _col0 @@ -191,7 +191,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-1 Move Operator @@ -201,7 +201,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-6 Stats-Aggr Operator @@ -228,11 +228,11 @@ PREHOOK: query: SELECT DEST1.* FROM DEST1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-19-16_014_8974042680779765629/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-13-01_664_3810195411441278654/-mr-10000 POSTHOOK: query: SELECT DEST1.* FROM DEST1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-19-16_014_8974042680779765629/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-13-01_664_3810195411441278654/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -549,11 +549,11 @@ PREHOOK: query: SELECT DEST2.* FROM DEST2 PREHOOK: type: QUERY PREHOOK: Input: default@dest2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-19-16_457_9177520285019033125/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-13-01_975_3300377158094249928/-mr-10000 POSTHOOK: query: SELECT DEST2.* FROM DEST2 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-19-16_457_9177520285019033125/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-13-01_975_3300377158094249928/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/merge1.q.out =================================================================== --- ql/src/test/results/clientpositive/merge1.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/merge1.q.out (working copy) @@ -86,7 +86,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Conditional Operator @@ -95,7 +95,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-04-02_184_5109318380714779295/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-05-54_959_1476171179177752871/-ext-10000 Stage: Stage-0 Move Operator @@ -105,7 +105,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -113,7 +113,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-04-02_184_5109318380714779295/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-05-54_959_1476171179177752871/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -121,7 +121,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: insert overwrite table dest1 @@ -139,11 +139,11 @@ PREHOOK: query: select * from dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-04-09_595_3681493371451427553/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-05-59_995_5663680922809426355/-mr-10000 POSTHOOK: query: select * from dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-04-09_595_3681493371451427553/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-05-59_995_5663680922809426355/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.val EXPRESSION [(src)src.null, ] 0 3 @@ -547,7 +547,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Conditional Operator @@ -556,7 +556,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-04-22_681_2184529355361135428/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-06-10_554_2501143143133822483/-ext-10000 Stage: Stage-0 Move Operator @@ -566,7 +566,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -574,7 +574,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-04-22_681_2184529355361135428/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-06-10_554_2501143143133822483/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -582,7 +582,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: insert overwrite table dest1 select key from test_src @@ -645,7 +645,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Conditional Operator @@ -654,7 +654,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-04-33_687_3730778879679285743/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-06-15_431_7394534148122470264/-ext-10000 Stage: Stage-0 Move Operator @@ -664,7 +664,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -672,7 +672,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-04-33_687_3730778879679285743/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-06-15_431_7394534148122470264/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -680,7 +680,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: insert overwrite table dest1 select key from test_src Index: ql/src/test/results/clientpositive/groupby_map_ppr_multi_distinct.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby_map_ppr_multi_distinct.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby_map_ppr_multi_distinct.q.out (working copy) @@ -85,10 +85,10 @@ type: bigint Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [src] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [src] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -102,13 +102,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -119,17 +119,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -143,13 +143,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -160,16 +160,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Group By Operator aggregations: @@ -212,9 +212,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-22-56_775_8999038142394451962/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-14-17_703_64574652669798881/-ext-10000 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-22-56_775_8999038142394451962/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-14-17_703_64574652669798881/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -224,14 +224,14 @@ columns.types string:int:string:int:int file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { string key, i32 c1, string c2, i32 c3, i32 c4} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288390976 + transient_lastDdlTime 1297246457 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -240,7 +240,7 @@ Move Operator tables: replace: true - source: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-22-56_775_8999038142394451962/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-14-17_703_64574652669798881/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -250,19 +250,19 @@ columns.types string:int:string:int:int file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { string key, i32 c1, string c2, i32 c3, i32 c4} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288390976 + transient_lastDdlTime 1297246457 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - tmp directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-22-56_775_8999038142394451962/-ext-10001 + name: default.dest1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-14-17_703_64574652669798881/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-22-56_775_8999038142394451962/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-14-17_703_64574652669798881/-ext-10000/ PREHOOK: query: FROM srcpart src @@ -291,11 +291,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/sdong/hive_2010-10-29_15-23-02_962_6408764044075057620/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-14-27_350_1342852465978372351/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/sdong/hive_2010-10-29_15-23-02_962_6408764044075057620/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-14-27_350_1342852465978372351/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(srcpart)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c2 EXPRESSION [(srcpart)src.FieldSchema(name:key, type:string, comment:default), (srcpart)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c3 EXPRESSION [(srcpart)src.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/join3.q.out =================================================================== --- ql/src/test/results/clientpositive/join3.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join3.q.out (working copy) @@ -97,7 +97,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -107,7 +107,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -128,11 +128,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-15_15-57-14_346_6262707438334064376/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-30-46_394_7328755856675149923/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-15_15-57-14_346_6262707438334064376/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-30-46_394_7328755856675149923/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SIMPLE [(src)src3.FieldSchema(name:value, type:string, comment:default), ] 0 val_0 Index: ql/src/test/results/clientpositive/lineage1.q.out =================================================================== --- ql/src/test/results/clientpositive/lineage1.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/lineage1.q.out (working copy) @@ -102,7 +102,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-52-08_102_663019916071850448/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-55-04_808_1234592757063258670/-mr-10002 Union Select Operator expressions: @@ -125,8 +125,8 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_l1 - file:/tmp/nzhang/hive_2010-09-14_16-52-08_102_663019916071850448/-mr-10004 + name: default.dest_l1 + file:/tmp/sdong/hive_2011-02-09_02-55-04_808_1234592757063258670/-mr-10004 Union Select Operator expressions: @@ -149,7 +149,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_l1 + name: default.dest_l1 Stage: Stage-6 Conditional Operator @@ -158,7 +158,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-52-08_102_663019916071850448/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-55-04_808_1234592757063258670/-ext-10000 Stage: Stage-0 Move Operator @@ -168,7 +168,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_l1 + name: default.dest_l1 Stage: Stage-3 Stats-Aggr Operator @@ -176,7 +176,7 @@ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-52-08_102_663019916071850448/-ext-10003 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-55-04_808_1234592757063258670/-ext-10003 File Output Operator compressed: false GlobalTableId: 0 @@ -184,7 +184,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_l1 + name: default.dest_l1 Stage: Stage-7 Map Reduce Index: ql/src/test/results/clientpositive/input8.q.out =================================================================== --- ql/src/test/results/clientpositive/input8.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input8.q.out (working copy) @@ -54,7 +54,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Conditional Operator @@ -63,7 +63,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-32-37_199_2880545020452749957/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-24-44_115_6089980025078775748/-ext-10000 Stage: Stage-0 Move Operator @@ -73,7 +73,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -81,7 +81,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-32-37_199_2880545020452749957/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-24-44_115_6089980025078775748/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -89,7 +89,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM src1 @@ -108,11 +108,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-32-43_734_3055902048337996946/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-24-48_987_3887179989090980684/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-32-43_734_3055902048337996946/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-24-48_987_3887179989090980684/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [] POSTHOOK: Lineage: dest1.c2 EXPRESSION [(src1)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c3 EXPRESSION [] Index: ql/src/test/results/clientpositive/filter_join_breaktask.q.out =================================================================== --- ql/src/test/results/clientpositive/filter_join_breaktask.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/filter_join_breaktask.q.out (working copy) @@ -100,9 +100,9 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/filter_join_breaktask/ds=2008-04-08 [f, m] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/filter_join_breaktask/ds=2008-04-08 [f, m] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/filter_join_breaktask/ds=2008-04-08 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -115,8 +115,8 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/filter_join_breaktask - name filter_join_breaktask + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/filter_join_breaktask/ds=2008-04-08 + name default.filter_join_breaktask numFiles 1 numPartitions 1 numRows 25 @@ -125,7 +125,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 236 - transient_lastDdlTime 1288810207 + transient_lastDdlTime 1297245921 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -136,8 +136,8 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/filter_join_breaktask - name filter_join_breaktask + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/filter_join_breaktask + name default.filter_join_breaktask numFiles 1 numPartitions 1 numRows 25 @@ -146,10 +146,10 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 236 - transient_lastDdlTime 1288810207 + transient_lastDdlTime 1297245921 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: filter_join_breaktask - name: filter_join_breaktask + name: default.filter_join_breaktask + name: default.filter_join_breaktask Reduce Operator Tree: Join Operator condition map: @@ -177,7 +177,7 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-11-03_11-50-07_978_4040810463207546064/-mr-10002 + directory: file:/tmp/sdong/hive_2011-02-09_02-05-21_776_4131768613516936876/-mr-10002 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -229,10 +229,10 @@ type: string Needs Tagging: true Path -> Alias: - file:/tmp/sdong/hive_2010-11-03_11-50-07_978_4040810463207546064/-mr-10002 [$INTNAME] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/filter_join_breaktask/ds=2008-04-08 [g] + file:/tmp/sdong/hive_2011-02-09_02-05-21_776_4131768613516936876/-mr-10002 [$INTNAME] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/filter_join_breaktask/ds=2008-04-08 [g] Path -> Partition: - file:/tmp/sdong/hive_2010-11-03_11-50-07_978_4040810463207546064/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-05-21_776_4131768613516936876/-mr-10002 Partition base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -248,7 +248,7 @@ columns _col0,_col6 columns.types int,string escape.delim \ - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/filter_join_breaktask/ds=2008-04-08 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -261,8 +261,8 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/filter_join_breaktask - name filter_join_breaktask + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/filter_join_breaktask/ds=2008-04-08 + name default.filter_join_breaktask numFiles 1 numPartitions 1 numRows 25 @@ -271,7 +271,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 236 - transient_lastDdlTime 1288810207 + transient_lastDdlTime 1297245921 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -282,8 +282,8 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/filter_join_breaktask - name filter_join_breaktask + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/filter_join_breaktask + name default.filter_join_breaktask numFiles 1 numPartitions 1 numRows 25 @@ -292,10 +292,10 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 236 - transient_lastDdlTime 1288810207 + transient_lastDdlTime 1297245921 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: filter_join_breaktask - name: filter_join_breaktask + name: default.filter_join_breaktask + name: default.filter_join_breaktask Reduce Operator Tree: Join Operator condition map: @@ -315,9 +315,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-11-03_11-50-07_978_4040810463207546064/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_02-05-21_776_4131768613516936876/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-11-03_11-50-07_978_4040810463207546064/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_02-05-21_776_4131768613516936876/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -339,13 +339,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/sdong/hive_2010-11-03_11-50-08_167_8926817836465229505/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-05-21_969_9117583530715081027/-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/sdong/hive_2010-11-03_11-50-08_167_8926817836465229505/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-05-21_969_9117583530715081027/-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/join17.q.out =================================================================== --- ql/src/test/results/clientpositive/join17.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join17.q.out (working copy) @@ -61,9 +61,9 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src [src2, src1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [src2, src1] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -74,12 +74,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284504429 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -90,15 +90,15 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284504429 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src + name: default.src + name: default.src Reduce Operator Tree: Join Operator condition map: @@ -133,9 +133,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-37-18_648_2059499692178002378/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-28-20_905_2229236112993282096/-ext-10000 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-37-18_648_2059499692178002378/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-28-20_905_2229236112993282096/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -145,14 +145,14 @@ columns.types int:string:int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key1, string value1, i32 key2, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284507438 + transient_lastDdlTime 1297247300 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -161,7 +161,7 @@ Move Operator tables: replace: true - source: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-37-18_648_2059499692178002378/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-28-20_905_2229236112993282096/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -171,19 +171,19 @@ columns.types int:string:int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key1, string value1, i32 key2, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284507438 + transient_lastDdlTime 1297247300 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - tmp directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-37-18_648_2059499692178002378/-ext-10001 + name: default.dest1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-28-20_905_2229236112993282096/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-37-18_648_2059499692178002378/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-28-20_905_2229236112993282096/-ext-10000/ PREHOOK: query: FROM src src1 JOIN src src2 ON (src1.key = src2.key) @@ -203,11 +203,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-37-25_606_7815293390556055337/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-28-26_986_8428226012455737434/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-37-25_606_7815293390556055337/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-28-26_986_8428226012455737434/-mr-10000 POSTHOOK: Lineage: dest1.key1 EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.key2 EXPRESSION [(src)src2.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value1 SIMPLE [(src)src1.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/groupby6.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby6.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby6.q.out (working copy) @@ -59,7 +59,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-16-43_453_3773010244841701560/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-10-46_241_2776152691068608861/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -89,7 +89,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -99,7 +99,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-3 Stats-Aggr Operator @@ -119,11 +119,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-16-52_753_2205865681155406670/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-10-55_087_6337627598285665436/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-16-52_753_2205865681155406670/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-10-55_087_6337627598285665436/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] 0 1 Index: ql/src/test/results/clientpositive/input_part9.q.out =================================================================== --- ql/src/test/results/clientpositive/input_part9.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input_part9.q.out (working copy) @@ -59,10 +59,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [x] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [x] + 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] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -76,13 +76,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -93,17 +93,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -117,13 +117,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -134,24 +134,24 @@ 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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-10-29_15-34-14_582_756431055398829157/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_02-26-26_278_2352187009189218448/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-10-29_15-34-14_582_756431055398829157/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_02-26-26_278_2352187009189218448/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -172,12 +172,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_2010-10-29_15-34-14_736_4847116234573522157/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-26-26_414_4670315841496726645/-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_2010-10-29_15-34-14_736_4847116234573522157/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-26-26_414_4670315841496726645/-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/load_dyn_part4.q.out =================================================================== --- ql/src/test/results/clientpositive/load_dyn_part4.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/load_dyn_part4.q.out (working copy) @@ -20,7 +20,7 @@ ds string hr string -Detailed Table Information Table(tableName:nzhang_part4, dbName:default, owner:null, createTime:1289453692, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/nzhang_part4, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{transient_lastDdlTime=1289453692}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:nzhang_part4, dbName:default, owner:null, createTime:1297249014, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_part4, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{transient_lastDdlTime=1297249014}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) PREHOOK: query: insert overwrite table nzhang_part4 partition (ds='2008-04-08', hr='existing_value') select key, value from src PREHOOK: type: QUERY PREHOOK: Input: default@src @@ -76,7 +76,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part4 + name: default.nzhang_part4 Stage: Stage-0 Move Operator @@ -89,7 +89,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part4 + name: default.nzhang_part4 Stage: Stage-2 Stats-Aggr Operator @@ -146,12 +146,13 @@ PREHOOK: Input: default@nzhang_part4@ds=2008-04-08/hr=11 PREHOOK: Input: default@nzhang_part4@ds=2008-04-08/hr=12 PREHOOK: Input: default@nzhang_part4@ds=2008-04-08/hr=existing_value -PREHOOK: Output: file:/tmp/njain/hive_2010-11-10_21-35-09_183_8213374101444478131/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-57-06_906_1829719489393532102/-mr-10000 POSTHOOK: query: select * from nzhang_part4 where ds='2008-04-08' and hr is not null POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_part4@ds=2008-04-08/hr=11 POSTHOOK: Input: default@nzhang_part4@ds=2008-04-08/hr=12 POSTHOOK: Input: default@nzhang_part4@ds=2008-04-08/hr=existing_value +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-57-06_906_1829719489393532102/-mr-10000 POSTHOOK: Lineage: nzhang_part4 PARTITION(ds=2008-04-08,hr=11).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part4 PARTITION(ds=2008-04-08,hr=11).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part4 PARTITION(ds=2008-04-08,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] @@ -1669,7 +1670,7 @@ PREHOOK: Input: default@nzhang_part4@ds=2008-04-08/hr=existing_value PREHOOK: Input: default@nzhang_part4@ds=2008-04-09/hr=11 PREHOOK: Input: default@nzhang_part4@ds=2008-04-09/hr=12 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-10_21-35-10_368_3529864342633166766/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-57-07_824_461446163389849089/-mr-10000 POSTHOOK: query: select * from nzhang_part4 where ds is not null and hr is not null POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_part4@ds=2008-04-08/hr=11 @@ -1677,6 +1678,7 @@ POSTHOOK: Input: default@nzhang_part4@ds=2008-04-08/hr=existing_value POSTHOOK: Input: default@nzhang_part4@ds=2008-04-09/hr=11 POSTHOOK: Input: default@nzhang_part4@ds=2008-04-09/hr=12 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-57-07_824_461446163389849089/-mr-10000 POSTHOOK: Lineage: nzhang_part4 PARTITION(ds=2008-04-08,hr=11).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part4 PARTITION(ds=2008-04-08,hr=11).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part4 PARTITION(ds=2008-04-08,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/sample5.q.out =================================================================== --- ql/src/test/results/clientpositive/sample5.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/sample5.q.out (working copy) @@ -52,9 +52,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-29_986_2811943230690720353/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-58_335_5507057562894294153/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-29_986_2811943230690720353/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-58_335_5507057562894294153/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -64,22 +64,22 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510269 + transient_lastDdlTime 1297250878 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: true MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket [s] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket [s] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket Partition base file name: srcbucket input format: org.apache.hadoop.mapred.TextInputFormat @@ -91,12 +91,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket - name srcbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket + name default.srcbucket serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504426 + transient_lastDdlTime 1297243146 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -108,15 +108,15 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket - name srcbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket + name default.srcbucket serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504426 + transient_lastDdlTime 1297243146 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket - name: srcbucket + name: default.srcbucket + name: default.srcbucket Stage: Stage-5 Conditional Operator @@ -125,14 +125,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-29_986_2811943230690720353/-ext-10002 - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-29_986_2811943230690720353/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-58_335_5507057562894294153/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-58_335_5507057562894294153/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-29_986_2811943230690720353/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-58_335_5507057562894294153/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -142,28 +142,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510269 + transient_lastDdlTime 1297250878 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - tmp directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-29_986_2811943230690720353/-ext-10001 + name: default.dest1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-58_335_5507057562894294153/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-29_986_2811943230690720353/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-58_335_5507057562894294153/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-29_986_2811943230690720353/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-58_335_5507057562894294153/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-29_986_2811943230690720353/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-58_335_5507057562894294153/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -174,22 +174,22 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510269 + transient_lastDdlTime 1297250878 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-29_986_2811943230690720353/-ext-10002 [pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-29_986_2811943230690720353/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-58_335_5507057562894294153/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-58_335_5507057562894294153/-ext-10002] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-29_986_2811943230690720353/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-58_335_5507057562894294153/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -200,12 +200,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510269 + transient_lastDdlTime 1297250878 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -216,15 +216,15 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510269 + transient_lastDdlTime 1297250878 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - name: dest1 + name: default.dest1 + name: default.dest1 PREHOOK: query: INSERT OVERWRITE TABLE dest1 SELECT s.* -- here's another test @@ -242,11 +242,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 SORT BY key, value PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-24-40_832_4548020518900973837/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-03_195_5738359866739012045/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 SORT BY key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-24-40_832_4548020518900973837/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-03_195_5738359866739012045/-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 Index: ql/src/test/results/clientpositive/join26.q.out =================================================================== --- ql/src/test/results/clientpositive/join26.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join26.q.out (working copy) @@ -122,9 +122,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-59-23_623_4518960640790293704/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-29-49_981_3454214346131991905/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-59-23_623_4518960640790293704/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-29-49_981_3454214346131991905/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -134,14 +134,14 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, string val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289271563 + transient_lastDdlTime 1297247389 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -149,9 +149,9 @@ Map Reduce Local Work Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [z] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [z] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -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/liyintang/hive-1754/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289268000 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -182,16 +182,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/liyintang/hive-1754/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289268000 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Stage: Stage-5 Conditional Operator @@ -200,14 +200,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-59-23_623_4518960640790293704/-ext-10002 - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-59-23_623_4518960640790293704/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-29-49_981_3454214346131991905/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-29-49_981_3454214346131991905/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-59-23_623_4518960640790293704/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-29-49_981_3454214346131991905/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -217,28 +217,28 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, string val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289271563 + transient_lastDdlTime 1297247389 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 - tmp directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-59-23_623_4518960640790293704/-ext-10001 + name: default.dest_j1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-29-49_981_3454214346131991905/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-59-23_623_4518960640790293704/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-29-49_981_3454214346131991905/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-59-23_623_4518960640790293704/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-29-49_981_3454214346131991905/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-59-23_623_4518960640790293704/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-29-49_981_3454214346131991905/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -249,22 +249,22 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, string val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289271563 + transient_lastDdlTime 1297247389 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-59-23_623_4518960640790293704/-ext-10002 [pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-59-23_623_4518960640790293704/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-29-49_981_3454214346131991905/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-29-49_981_3454214346131991905/-ext-10002] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-59-23_623_4518960640790293704/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-29-49_981_3454214346131991905/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -275,12 +275,12 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, string val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289271563 + transient_lastDdlTime 1297247389 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -291,15 +291,15 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, string val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289271563 + transient_lastDdlTime 1297247389 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 - name: dest_j1 + name: default.dest_j1 + name: default.dest_j1 PREHOOK: query: INSERT OVERWRITE TABLE dest_j1 @@ -326,11 +326,11 @@ PREHOOK: query: select * from dest_j1 x order by x.key PREHOOK: type: QUERY PREHOOK: Input: default@dest_j1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_18-59-33_893_3693465001557725052/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-29-57_392_4697839280613419878/-mr-10000 POSTHOOK: query: select * from dest_j1 x order by x.key POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_j1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_18-59-33_893_3693465001557725052/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-29-57_392_4697839280613419878/-mr-10000 POSTHOOK: Lineage: dest_j1.key SIMPLE [(src1)x.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.val2 SIMPLE [(src)y.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(srcpart)z.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/groupby5_map.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby5_map.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby5_map.q.out (working copy) @@ -65,7 +65,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -75,7 +75,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -93,10 +93,10 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-16-25_205_2877964195342389464/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-10-28_051_2807749999319484826/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-16-25_205_2877964195342389464/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-10-28_051_2807749999319484826/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] 130091 Index: ql/src/test/results/clientpositive/bucketmapjoin_negative.q.out =================================================================== --- ql/src/test/results/clientpositive/bucketmapjoin_negative.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/bucketmapjoin_negative.q.out (working copy) @@ -131,9 +131,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-17-56_639_983307583097560485/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-48_883_8197568613624949708/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-17-56_639_983307583097560485/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-48_883_8197568613624949708/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -143,14 +143,14 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289269076 + transient_lastDdlTime 1297245408 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -158,9 +158,9 @@ Map Reduce Local Work Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin [a] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin [a] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin Partition base file name: srcbucket_mapjoin input format: org.apache.hadoop.mapred.TextInputFormat @@ -172,12 +172,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/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin - name srcbucket_mapjoin + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin + name default.srcbucket_mapjoin serialization.ddl struct srcbucket_mapjoin { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289269072 + transient_lastDdlTime 1297245406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -189,15 +189,15 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin - name srcbucket_mapjoin + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin + name default.srcbucket_mapjoin serialization.ddl struct srcbucket_mapjoin { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289269072 + transient_lastDdlTime 1297245406 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket_mapjoin - name: srcbucket_mapjoin + name: default.srcbucket_mapjoin + name: default.srcbucket_mapjoin Stage: Stage-5 Conditional Operator @@ -206,14 +206,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-17-56_639_983307583097560485/-ext-10002 - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-17-56_639_983307583097560485/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-48_883_8197568613624949708/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-48_883_8197568613624949708/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-17-56_639_983307583097560485/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-48_883_8197568613624949708/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -223,28 +223,28 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289269076 + transient_lastDdlTime 1297245408 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - tmp directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-17-56_639_983307583097560485/-ext-10001 + name: default.bucketmapjoin_tmp_result + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-48_883_8197568613624949708/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-17-56_639_983307583097560485/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-48_883_8197568613624949708/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-17-56_639_983307583097560485/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-48_883_8197568613624949708/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-17-56_639_983307583097560485/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-48_883_8197568613624949708/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -255,22 +255,22 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289269076 + transient_lastDdlTime 1297245408 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-17-56_639_983307583097560485/-ext-10002 [pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-17-56_639_983307583097560485/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-48_883_8197568613624949708/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-48_883_8197568613624949708/-ext-10002] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-17-56_639_983307583097560485/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-48_883_8197568613624949708/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -281,12 +281,12 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289269076 + transient_lastDdlTime 1297245408 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -297,14 +297,14 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289269076 + transient_lastDdlTime 1297245408 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result Index: ql/src/test/results/clientpositive/load_dyn_part10.q.out =================================================================== --- ql/src/test/results/clientpositive/load_dyn_part10.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/load_dyn_part10.q.out (working copy) @@ -20,7 +20,7 @@ ds string hr string -Detailed Table Information Table(tableName:nzhang_part10, dbName:default, owner:null, createTime:1289453228, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/nzhang_part10, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{transient_lastDdlTime=1289453228}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:nzhang_part10, dbName:default, owner:null, createTime:1297248929, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_part10, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{transient_lastDdlTime=1297248929}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) PREHOOK: query: explain from srcpart insert overwrite table nzhang_part10 partition(ds='2008-12-31', hr) select key, value, hr where ds > '2008-04-08' @@ -64,7 +64,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part10 + name: default.nzhang_part10 Stage: Stage-0 Move Operator @@ -77,7 +77,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part10 + name: default.nzhang_part10 Stage: Stage-2 Stats-Aggr Operator @@ -114,11 +114,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@nzhang_part10@ds=2008-12-31/hr=11 PREHOOK: Input: default@nzhang_part10@ds=2008-12-31/hr=12 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-10_21-27-18_154_26666520749874874/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-55-35_800_6813828524365650307/-mr-10000 POSTHOOK: query: select * from nzhang_part10 where ds is not null and hr is not null POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_part10@ds=2008-12-31/hr=11 POSTHOOK: Input: default@nzhang_part10@ds=2008-12-31/hr=12 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-55-35_800_6813828524365650307/-mr-10000 POSTHOOK: Lineage: nzhang_part10 PARTITION(ds=2008-12-31,hr=11).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part10 PARTITION(ds=2008-12-31,hr=11).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part10 PARTITION(ds=2008-12-31,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/stats5.q.out =================================================================== --- ql/src/test/results/clientpositive/stats5.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/stats5.q.out (working copy) @@ -10,7 +10,7 @@ POSTHOOK: query: explain analyze table analyze_src compute statistics POSTHOOK: type: QUERY ABSTRACT SYNTAX TREE: - (TOK_ANALYZE (TOK_TABTYPE analyze_src)) + (TOK_ANALYZE (TOK_TAB analyze_src)) STAGE DEPENDENCIES: Stage-0 is a root stage @@ -43,4 +43,4 @@ key string value string -Detailed Table Information Table(tableName:analyze_src, dbName:default, owner:heyongqiang, createTime:1290146681, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:null), FieldSchema(name:value, type:string, comment:null)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_src, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[], parameters:{numPartitions=0, numFiles=1, transient_lastDdlTime=1290146692, numRows=500, totalSize=5812}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:analyze_src, dbName:default, owner:sdong, createTime:1297252062, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:null), FieldSchema(name:value, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_src, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[], parameters:{numPartitions=0, numFiles=1, transient_lastDdlTime=1297252066, numRows=500, totalSize=5812}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) Index: ql/src/test/results/clientpositive/smb_mapjoin_7.q.out =================================================================== --- ql/src/test/results/clientpositive/smb_mapjoin_7.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/smb_mapjoin_7.q.out (working copy) @@ -88,11 +88,11 @@ PREHOOK: query: select * from smb_join_results_empty_bigtable order by k1, v1, k2, v2 PREHOOK: type: QUERY PREHOOK: Input: default@smb_join_results_empty_bigtable -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-44-43_597_2812884057477740432/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-43-36_888_5747344994079487648/-mr-10000 POSTHOOK: query: select * from smb_join_results_empty_bigtable order by k1, v1, k2, v2 POSTHOOK: type: QUERY POSTHOOK: Input: default@smb_join_results_empty_bigtable -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-44-43_597_2812884057477740432/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-43-36_888_5747344994079487648/-mr-10000 POSTHOOK: Lineage: smb_bucket4_2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: smb_bucket4_2.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: smb_join_results_empty_bigtable.k1 SIMPLE [(smb_bucket4_1)a.FieldSchema(name:key, type:int, comment:null), ] @@ -677,7 +677,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: smb_join_results + name: default.smb_join_results Stage: Stage-0 Move Operator @@ -687,7 +687,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: smb_join_results + name: default.smb_join_results Stage: Stage-2 Stats-Aggr Operator @@ -722,11 +722,11 @@ PREHOOK: query: select * from smb_join_results order by k1, v1, k2, v2 PREHOOK: type: QUERY PREHOOK: Input: default@smb_join_results -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-44-56_402_5775234737243407547/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-43-45_644_1671264571632981674/-mr-10000 POSTHOOK: query: select * from smb_join_results order by k1, v1, k2, v2 POSTHOOK: type: QUERY POSTHOOK: Input: default@smb_join_results -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-44-56_402_5775234737243407547/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-43-45_644_1671264571632981674/-mr-10000 POSTHOOK: Lineage: smb_bucket4_2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: smb_bucket4_2.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: smb_join_results.k1 SIMPLE [(smb_bucket4_1)a.FieldSchema(name:key, type:int, comment:null), ] @@ -1272,11 +1272,11 @@ PREHOOK: query: select sum(hash(k1)) as k1, sum(hash(k2)) as k2, sum(hash(v1)) as v1, sum(hash(v2)) as v2 from normal_join_results PREHOOK: type: QUERY PREHOOK: Input: default@normal_join_results -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-45-10_652_8587502859369515866/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-43-55_404_8934241458399537893/-mr-10000 POSTHOOK: query: select sum(hash(k1)) as k1, sum(hash(k2)) as k2, sum(hash(v1)) as v1, sum(hash(v2)) as v2 from normal_join_results POSTHOOK: type: QUERY POSTHOOK: Input: default@normal_join_results -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-45-10_652_8587502859369515866/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-43-55_404_8934241458399537893/-mr-10000 POSTHOOK: Lineage: normal_join_results.k1 SIMPLE [(smb_bucket4_1)a.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: normal_join_results.k2 SIMPLE [(smb_bucket4_2)b.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: normal_join_results.v1 SIMPLE [(smb_bucket4_1)a.FieldSchema(name:value, type:string, comment:null), ] @@ -1299,11 +1299,11 @@ PREHOOK: query: select sum(hash(k1)) as k1, sum(hash(k2)) as k2, sum(hash(v1)) as v1, sum(hash(v2)) as v2 from smb_join_results PREHOOK: type: QUERY PREHOOK: Input: default@smb_join_results -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-45-14_322_2578694884050747972/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-43-58_827_6344620915759025430/-mr-10000 POSTHOOK: query: select sum(hash(k1)) as k1, sum(hash(k2)) as k2, sum(hash(v1)) as v1, sum(hash(v2)) as v2 from smb_join_results POSTHOOK: type: QUERY POSTHOOK: Input: default@smb_join_results -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-45-14_322_2578694884050747972/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-43-58_827_6344620915759025430/-mr-10000 POSTHOOK: Lineage: normal_join_results.k1 SIMPLE [(smb_bucket4_1)a.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: normal_join_results.k2 SIMPLE [(smb_bucket4_2)b.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: normal_join_results.v1 SIMPLE [(smb_bucket4_1)a.FieldSchema(name:value, type:string, comment:null), ] @@ -1326,11 +1326,11 @@ PREHOOK: query: select sum(hash(k1)) as k1, sum(hash(k2)) as k2, sum(hash(v1)) as v1, sum(hash(v2)) as v2 from smb_join_results_empty_bigtable PREHOOK: type: QUERY PREHOOK: Input: default@smb_join_results_empty_bigtable -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-45-18_930_6487065842202942629/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-44-02_305_382291859211005744/-mr-10000 POSTHOOK: query: select sum(hash(k1)) as k1, sum(hash(k2)) as k2, sum(hash(v1)) as v1, sum(hash(v2)) as v2 from smb_join_results_empty_bigtable POSTHOOK: type: QUERY POSTHOOK: Input: default@smb_join_results_empty_bigtable -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-45-18_930_6487065842202942629/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-44-02_305_382291859211005744/-mr-10000 POSTHOOK: Lineage: normal_join_results.k1 SIMPLE [(smb_bucket4_1)a.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: normal_join_results.k2 SIMPLE [(smb_bucket4_2)b.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: normal_join_results.v1 SIMPLE [(smb_bucket4_1)a.FieldSchema(name:value, type:string, comment:null), ] Index: ql/src/test/results/clientpositive/skewjoin.q.out =================================================================== --- ql/src/test/results/clientpositive/skewjoin.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/skewjoin.q.out (working copy) @@ -126,7 +126,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Stage: Stage-5 Conditional Operator @@ -186,7 +186,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Local Work: Map Reduce Local Work @@ -198,7 +198,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Stage: Stage-2 Stats-Aggr Operator @@ -219,11 +219,11 @@ PREHOOK: query: SELECT sum(hash(key)), sum(hash(value)) FROM dest_j1 PREHOOK: type: QUERY PREHOOK: Input: default@dest_j1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-24-02_177_6322462823933452249/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-34-28_850_3141832912307135929/-mr-10000 POSTHOOK: query: SELECT sum(hash(key)), sum(hash(value)) FROM dest_j1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_j1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-24-02_177_6322462823933452249/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-34-28_850_3141832912307135929/-mr-10000 POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src)src2.FieldSchema(name:value, type:string, comment:default), ] 278697 101852390308 @@ -373,7 +373,7 @@ PREHOOK: Input: default@t2 PREHOOK: Input: default@t3 PREHOOK: Input: default@t4 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-24-48_767_6312998778554021237/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-34-42_821_4286465937628421825/-mr-10000 POSTHOOK: query: SELECT /*+ STREAMTABLE(a) */ * FROM T1 a JOIN T2 b ON a.key = b.key JOIN T3 c ON b.key = c.key @@ -383,7 +383,7 @@ POSTHOOK: Input: default@t2 POSTHOOK: Input: default@t3 POSTHOOK: Input: default@t4 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-24-48_767_6312998778554021237/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-34-42_821_4286465937628421825/-mr-10000 POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src)src2.FieldSchema(name:value, type:string, comment:default), ] 2 12 2 22 2 12 2 12 @@ -533,7 +533,7 @@ PREHOOK: Input: default@t2 PREHOOK: Input: default@t3 PREHOOK: Input: default@t4 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-24-55_262_4307015827448578323/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-34-48_410_5358659577635664721/-mr-10000 POSTHOOK: query: SELECT /*+ STREAMTABLE(a,c) */ * FROM T1 a JOIN T2 b ON a.key = b.key JOIN T3 c ON b.key = c.key @@ -543,7 +543,7 @@ POSTHOOK: Input: default@t2 POSTHOOK: Input: default@t3 POSTHOOK: Input: default@t4 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-24-55_262_4307015827448578323/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-34-48_410_5358659577635664721/-mr-10000 POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src)src2.FieldSchema(name:value, type:string, comment:default), ] 2 12 2 22 2 12 2 12 @@ -633,7 +633,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/liyintang/hive_2010-11-04_13-25-01_489_621733224236629264/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_03-34-53_941_6917082324782719152/-mr-10002 Reduce Output Operator sort order: tag: -1 @@ -678,12 +678,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@src PREHOOK: Input: default@t1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-25-01_614_8452579245689090471/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-34-54_081_1567315650661697257/-mr-10000 POSTHOOK: query: FROM T1 a JOIN src c ON c.key+1=a.key SELECT /*+ STREAMTABLE(a) */ sum(hash(a.key)), sum(hash(a.val)), sum(hash(c.key)) POSTHOOK: type: QUERY POSTHOOK: Input: default@src POSTHOOK: Input: default@t1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-25-01_614_8452579245689090471/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-34-54_081_1567315650661697257/-mr-10000 POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src)src2.FieldSchema(name:value, type:string, comment:default), ] 198 6274 194 @@ -852,7 +852,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/liyintang/hive_2010-11-04_13-25-11_476_8171195744821612387/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_03-35-01_059_530492468522354040/-mr-10002 Reduce Output Operator sort order: tag: -1 @@ -896,7 +896,7 @@ SELECT sum(hash(Y.key)), sum(hash(Y.value)) PREHOOK: type: QUERY PREHOOK: Input: default@src -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-25-11_753_1076291109958736199/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-35-01_259_2281038224999113467/-mr-10000 POSTHOOK: query: FROM (SELECT src.* FROM src) x JOIN @@ -905,7 +905,7 @@ SELECT sum(hash(Y.key)), sum(hash(Y.value)) POSTHOOK: type: QUERY POSTHOOK: Input: default@src -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-25-11_753_1076291109958736199/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-35-01_259_2281038224999113467/-mr-10000 POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src)src2.FieldSchema(name:value, type:string, comment:default), ] 44481300 101852390308 @@ -1084,7 +1084,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/liyintang/hive_2010-11-04_13-26-43_698_1130450755234603131/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_03-35-35_290_3585600484187464544/-mr-10002 Reduce Output Operator sort order: tag: -1 @@ -1128,7 +1128,7 @@ SELECT sum(hash(Y.key)), sum(hash(Y.value)) PREHOOK: type: QUERY PREHOOK: Input: default@src -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-26-43_990_6372868616213782508/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-35-35_523_4963160008593893835/-mr-10000 POSTHOOK: query: FROM (SELECT src.* FROM src) x JOIN @@ -1137,7 +1137,7 @@ SELECT sum(hash(Y.key)), sum(hash(Y.value)) POSTHOOK: type: QUERY POSTHOOK: Input: default@src -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-26-43_990_6372868616213782508/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-35-35_523_4963160008593893835/-mr-10000 POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src)src2.FieldSchema(name:value, type:string, comment:default), ] NULL NULL @@ -1372,7 +1372,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/liyintang/hive_2010-11-04_13-28-07_199_3806389747749479816/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_03-36-01_960_6985255623902966388/-mr-10002 Reduce Output Operator sort order: tag: -1 @@ -1496,7 +1496,7 @@ ON src1.c1 = src3.c5 AND src3.c5 < 80 PREHOOK: type: QUERY PREHOOK: Input: default@src -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-28-07_762_745139769279053433/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-36-02_323_1892025925141420743/-mr-10000 POSTHOOK: query: SELECT sum(hash(src1.c1)), sum(hash(src2.c4)) FROM (SELECT src.key as c1, src.value as c2 from src) src1 @@ -1508,7 +1508,7 @@ ON src1.c1 = src3.c5 AND src3.c5 < 80 POSTHOOK: type: QUERY POSTHOOK: Input: default@src -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-28-07_762_745139769279053433/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-36-02_323_1892025925141420743/-mr-10000 POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src)src2.FieldSchema(name:value, type:string, comment:default), ] 293143 -136853010385 @@ -1580,7 +1580,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/liyintang/hive_2010-11-04_13-30-14_923_356309771096230331/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_03-36-39_370_2803312631529811007/-mr-10002 Select Operator expressions: expr: _col0 @@ -1640,55 +1640,55 @@ PREHOOK: query: SELECT /*+ mapjoin(v)*/ sum(hash(k.key)), sum(hash(v.val)) FROM T1 k LEFT OUTER JOIN T1 v ON k.key+1=v.key PREHOOK: type: QUERY PREHOOK: Input: default@t1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-30-15_048_6024162501211427411/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-36-39_474_7547115075878355643/-mr-10000 POSTHOOK: query: SELECT /*+ mapjoin(v)*/ sum(hash(k.key)), sum(hash(v.val)) FROM T1 k LEFT OUTER JOIN T1 v ON k.key+1=v.key POSTHOOK: type: QUERY POSTHOOK: Input: default@t1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-30-15_048_6024162501211427411/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-36-39_474_7547115075878355643/-mr-10000 POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src)src2.FieldSchema(name:value, type:string, comment:default), ] 372 6320 PREHOOK: query: select /*+ mapjoin(k)*/ sum(hash(k.key)), sum(hash(v.val)) from T1 k join T1 v on k.key=v.val PREHOOK: type: QUERY PREHOOK: Input: default@t1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-30-26_961_8307603098035847510/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-36-47_982_7182471145484393269/-mr-10000 POSTHOOK: query: select /*+ mapjoin(k)*/ sum(hash(k.key)), sum(hash(v.val)) from T1 k join T1 v on k.key=v.val POSTHOOK: type: QUERY POSTHOOK: Input: default@t1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-30-26_961_8307603098035847510/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-36-47_982_7182471145484393269/-mr-10000 POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src)src2.FieldSchema(name:value, type:string, comment:default), ] NULL NULL PREHOOK: query: select /*+ mapjoin(k)*/ sum(hash(k.key)), sum(hash(v.val)) from T1 k join T1 v on k.key=v.key PREHOOK: type: QUERY PREHOOK: Input: default@t1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-30-36_802_3005209775052152224/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-36-56_410_7698892795013496084/-mr-10000 POSTHOOK: query: select /*+ mapjoin(k)*/ sum(hash(k.key)), sum(hash(v.val)) from T1 k join T1 v on k.key=v.key POSTHOOK: type: QUERY POSTHOOK: Input: default@t1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-30-36_802_3005209775052152224/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-36-56_410_7698892795013496084/-mr-10000 POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src)src2.FieldSchema(name:value, type:string, comment:default), ] 429 12643 PREHOOK: query: select sum(hash(k.key)), sum(hash(v.val)) from T1 k join T1 v on k.key=v.key PREHOOK: type: QUERY PREHOOK: Input: default@t1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-30-48_466_8583634665917897680/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-37-04_799_8599540742935693252/-mr-10000 POSTHOOK: query: select sum(hash(k.key)), sum(hash(v.val)) from T1 k join T1 v on k.key=v.key POSTHOOK: type: QUERY POSTHOOK: Input: default@t1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-30-48_466_8583634665917897680/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-37-04_799_8599540742935693252/-mr-10000 POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src)src2.FieldSchema(name:value, type:string, comment:default), ] 429 12643 PREHOOK: query: select count(1) from T1 a join T1 b on a.key = b.key PREHOOK: type: QUERY PREHOOK: Input: default@t1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-31-03_237_192983720880547949/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-37-17_639_8761024923351875344/-mr-10000 POSTHOOK: query: select count(1) from T1 a join T1 b on a.key = b.key POSTHOOK: type: QUERY POSTHOOK: Input: default@t1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-31-03_237_192983720880547949/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-37-17_639_8761024923351875344/-mr-10000 POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src)src2.FieldSchema(name:value, type:string, comment:default), ] 8 @@ -1696,12 +1696,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@t1 PREHOOK: Input: default@t2 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-31-16_676_2618061858875139981/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-37-29_338_537471545574913145/-mr-10000 POSTHOOK: query: FROM T1 a LEFT OUTER JOIN T2 c ON c.key+1=a.key SELECT sum(hash(a.key)), sum(hash(a.val)), sum(hash(c.key)) POSTHOOK: type: QUERY POSTHOOK: Input: default@t1 POSTHOOK: Input: default@t2 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-31-16_676_2618061858875139981/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-37-29_338_537471545574913145/-mr-10000 POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src)src2.FieldSchema(name:value, type:string, comment:default), ] 317 9462 50 @@ -1709,12 +1709,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@t1 PREHOOK: Input: default@t2 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-31-25_804_1434715960848718635/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-37-36_342_164902569911655822/-mr-10000 POSTHOOK: query: FROM T1 a RIGHT OUTER JOIN T2 c ON c.key+1=a.key SELECT /*+ STREAMTABLE(a) */ sum(hash(a.key)), sum(hash(a.val)), sum(hash(c.key)) POSTHOOK: type: QUERY POSTHOOK: Input: default@t1 POSTHOOK: Input: default@t2 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-31-25_804_1434715960848718635/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-37-36_342_164902569911655822/-mr-10000 POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src)src2.FieldSchema(name:value, type:string, comment:default), ] 51 1570 318 @@ -1722,12 +1722,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@t1 PREHOOK: Input: default@t2 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-31-35_151_4513393491876936064/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-37-43_253_261622828459643455/-mr-10000 POSTHOOK: query: FROM T1 a FULL OUTER JOIN T2 c ON c.key+1=a.key SELECT /*+ STREAMTABLE(a) */ sum(hash(a.key)), sum(hash(a.val)), sum(hash(c.key)) POSTHOOK: type: QUERY POSTHOOK: Input: default@t1 POSTHOOK: Input: default@t2 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-31-35_151_4513393491876936064/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-37-43_253_261622828459643455/-mr-10000 POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src)src2.FieldSchema(name:value, type:string, comment:default), ] 317 9462 318 @@ -1735,12 +1735,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@t1 PREHOOK: Input: default@t2 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-31-44_380_3162963056826185972/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-37-50_570_4106970067975834299/-mr-10000 POSTHOOK: query: SELECT sum(hash(src1.key)), sum(hash(src1.val)), sum(hash(src2.key)) FROM T1 src1 LEFT OUTER JOIN T2 src2 ON src1.key+1 = src2.key RIGHT OUTER JOIN T2 src3 ON src2.key = src3.key POSTHOOK: type: QUERY POSTHOOK: Input: default@t1 POSTHOOK: Input: default@t2 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-31-44_380_3162963056826185972/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-37-50_570_4106970067975834299/-mr-10000 POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src)src2.FieldSchema(name:value, type:string, comment:default), ] 370 11003 377 @@ -1748,23 +1748,23 @@ PREHOOK: type: QUERY PREHOOK: Input: default@t1 PREHOOK: Input: default@t2 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-31-53_546_8829290719525806208/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-37-57_605_235792554532009656/-mr-10000 POSTHOOK: query: SELECT sum(hash(src1.key)), sum(hash(src1.val)), sum(hash(src2.key)) FROM T1 src1 JOIN T2 src2 ON src1.key+1 = src2.key JOIN T2 src3 ON src2.key = src3.key POSTHOOK: type: QUERY POSTHOOK: Input: default@t1 POSTHOOK: Input: default@t2 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-31-53_546_8829290719525806208/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-37-57_605_235792554532009656/-mr-10000 POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src)src2.FieldSchema(name:value, type:string, comment:default), ] 370 11003 377 PREHOOK: query: select /*+ mapjoin(v)*/ sum(hash(k.key)), sum(hash(v.val)) from T1 k left outer join T1 v on k.key+1=v.key PREHOOK: type: QUERY PREHOOK: Input: default@t1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-32-19_241_1942705791648142414/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-38-14_910_3857664439828931671/-mr-10000 POSTHOOK: query: select /*+ mapjoin(v)*/ sum(hash(k.key)), sum(hash(v.val)) from T1 k left outer join T1 v on k.key+1=v.key POSTHOOK: type: QUERY POSTHOOK: Input: default@t1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_13-32-19_241_1942705791648142414/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-38-14_910_3857664439828931671/-mr-10000 POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src)src2.FieldSchema(name:value, type:string, comment:default), ] 372 6320 Index: ql/src/test/results/clientpositive/udf1.q.out =================================================================== --- ql/src/test/results/clientpositive/udf1.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/udf1.q.out (working copy) @@ -105,7 +105,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Conditional Operator @@ -114,7 +114,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-55-39_714_1712462366624932992/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-53-27_860_5323336262570905277/-ext-10000 Stage: Stage-0 Move Operator @@ -124,7 +124,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -132,7 +132,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-55-39_714_1712462366624932992/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-53-27_860_5323336262570905277/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -140,7 +140,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM src INSERT OVERWRITE TABLE dest1 SELECT 'a' LIKE '%a%', 'b' LIKE '%a%', 'ab' LIKE '%a%', 'ab' LIKE '%a_', @@ -186,11 +186,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-55-46_255_8352436092286552251/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-53-32_862_6812762835675197136/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-55-46_255_8352436092286552251/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-53-32_862_6812762835675197136/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [] POSTHOOK: Lineage: dest1.c10 EXPRESSION [] POSTHOOK: Lineage: dest1.c11 EXPRESSION [] Index: ql/src/test/results/clientpositive/input17.q.out =================================================================== --- ql/src/test/results/clientpositive/input17.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input17.q.out (working copy) @@ -85,7 +85,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -95,7 +95,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -126,11 +126,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-27-31_868_739596655296346837/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-20-34_448_6723796280157701695/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-27-31_868_739596655296346837/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-20-34_448_6723796280157701695/-mr-10000 POSTHOOK: Lineage: dest1.key SCRIPT [(src_thrift)src_thrift.FieldSchema(name:aint, type:int, comment:from deserializer), (src_thrift)src_thrift.FieldSchema(name:lint, type:array, comment:from deserializer), (src_thrift)src_thrift.FieldSchema(name:lintstring, type:array, comment:from deserializer), ] POSTHOOK: Lineage: dest1.value SCRIPT [(src_thrift)src_thrift.FieldSchema(name:aint, type:int, comment:from deserializer), (src_thrift)src_thrift.FieldSchema(name:lint, type:array, comment:from deserializer), (src_thrift)src_thrift.FieldSchema(name:lintstring, type:array, comment:from deserializer), ] NULL null Index: ql/src/test/results/clientpositive/join35.q.out =================================================================== --- ql/src/test/results/clientpositive/join35.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join35.q.out (working copy) @@ -83,9 +83,9 @@ type: bigint Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/src [null-subquery1:subq1-subquery1:x] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [null-subquery1:subq1-subquery1:x] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -96,12 +96,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/liyintang/hive-1754/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288894219 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -112,15 +112,15 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288894219 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src + name: default.src + name: default.src Reduce Operator Tree: Group By Operator aggregations: @@ -141,7 +141,7 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/liyintang/hive_2010-11-04_12-12-33_932_3206165386907828885/-mr-10002 + directory: file:/tmp/sdong/hive_2011-02-09_02-32-03_557_323900941491137746/-mr-10002 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -178,7 +178,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/liyintang/hive_2010-11-04_12-12-33_932_3206165386907828885/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-32-03_557_323900941491137746/-mr-10002 Union Map Join Operator condition map: @@ -222,9 +222,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-33_932_3206165386907828885/-ext-10003 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-32-03_557_323900941491137746/-ext-10003 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-33_932_3206165386907828885/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-32-03_557_323900941491137746/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -234,18 +234,18 @@ columns.types string:string:int file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, i32 val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288897953 + transient_lastDdlTime 1297247523 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 TotalFiles: 1 GatherStats: true MultiFileSpray: false - file:/tmp/liyintang/hive_2010-11-04_12-12-33_932_3206165386907828885/-mr-10004 + file:/tmp/sdong/hive_2011-02-09_02-32-03_557_323900941491137746/-mr-10004 Union Map Join Operator condition map: @@ -289,9 +289,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-33_932_3206165386907828885/-ext-10003 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-32-03_557_323900941491137746/-ext-10003 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-33_932_3206165386907828885/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-32-03_557_323900941491137746/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -301,14 +301,14 @@ columns.types string:string:int file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, i32 val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288897953 + transient_lastDdlTime 1297247523 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -316,10 +316,10 @@ Map Reduce Local Work Needs Tagging: false Path -> Alias: - file:/tmp/liyintang/hive_2010-11-04_12-12-33_932_3206165386907828885/-mr-10002 [file:/tmp/liyintang/hive_2010-11-04_12-12-33_932_3206165386907828885/-mr-10002] - file:/tmp/liyintang/hive_2010-11-04_12-12-33_932_3206165386907828885/-mr-10004 [file:/tmp/liyintang/hive_2010-11-04_12-12-33_932_3206165386907828885/-mr-10004] + file:/tmp/sdong/hive_2011-02-09_02-32-03_557_323900941491137746/-mr-10002 [file:/tmp/sdong/hive_2011-02-09_02-32-03_557_323900941491137746/-mr-10002] + file:/tmp/sdong/hive_2011-02-09_02-32-03_557_323900941491137746/-mr-10004 [file:/tmp/sdong/hive_2011-02-09_02-32-03_557_323900941491137746/-mr-10004] Path -> Partition: - file:/tmp/liyintang/hive_2010-11-04_12-12-33_932_3206165386907828885/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-32-03_557_323900941491137746/-mr-10002 Partition base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -335,7 +335,7 @@ columns _col0,_col1 columns.types string,bigint escape.delim \ - file:/tmp/liyintang/hive_2010-11-04_12-12-33_932_3206165386907828885/-mr-10004 + file:/tmp/sdong/hive_2011-02-09_02-32-03_557_323900941491137746/-mr-10004 Partition base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -359,14 +359,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-33_932_3206165386907828885/-ext-10003 - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-33_932_3206165386907828885/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-32-03_557_323900941491137746/-ext-10003 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-32-03_557_323900941491137746/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-33_932_3206165386907828885/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-32-03_557_323900941491137746/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -376,28 +376,28 @@ columns.types string:string:int file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, i32 val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288897953 + transient_lastDdlTime 1297247523 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 - tmp directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-33_932_3206165386907828885/-ext-10001 + name: default.dest_j1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-32-03_557_323900941491137746/-ext-10001 Stage: Stage-3 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-33_932_3206165386907828885/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-32-03_557_323900941491137746/-ext-10000/ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-33_932_3206165386907828885/-ext-10003 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-32-03_557_323900941491137746/-ext-10003 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-33_932_3206165386907828885/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-32-03_557_323900941491137746/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -408,22 +408,22 @@ columns.types string:string:int file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, i32 val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288897953 + transient_lastDdlTime 1297247523 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-33_932_3206165386907828885/-ext-10003 [pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-33_932_3206165386907828885/-ext-10003] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-32-03_557_323900941491137746/-ext-10003 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-32-03_557_323900941491137746/-ext-10003] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-12-33_932_3206165386907828885/-ext-10003 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-32-03_557_323900941491137746/-ext-10003 Partition base file name: -ext-10003 input format: org.apache.hadoop.mapred.TextInputFormat @@ -434,12 +434,12 @@ columns.types string:string:int file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, i32 val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288897953 + transient_lastDdlTime 1297247523 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -450,15 +450,15 @@ columns.types string:string:int file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, i32 val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288897953 + transient_lastDdlTime 1297247523 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 - name: dest_j1 + name: default.dest_j1 + name: default.dest_j1 Stage: Stage-7 Map Reduce @@ -505,9 +505,9 @@ type: bigint Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/src [null-subquery2:subq1-subquery2:x1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [null-subquery2:subq1-subquery2:x1] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -518,12 +518,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/liyintang/hive-1754/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288894219 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -534,15 +534,15 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288894219 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src + name: default.src + name: default.src Reduce Operator Tree: Group By Operator aggregations: @@ -563,7 +563,7 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/liyintang/hive_2010-11-04_12-12-33_932_3206165386907828885/-mr-10004 + directory: file:/tmp/sdong/hive_2011-02-09_02-32-03_557_323900941491137746/-mr-10004 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -607,11 +607,11 @@ PREHOOK: query: select * from dest_j1 x order by x.key PREHOOK: type: QUERY PREHOOK: Input: default@dest_j1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_12-12-57_316_845546887873454795/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-32-17_500_8914799664818948572/-mr-10000 POSTHOOK: query: select * from dest_j1 x order by x.key POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_j1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_12-12-57_316_845546887873454795/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-32-17_500_8914799664818948572/-mr-10000 POSTHOOK: Lineage: dest_j1.key SIMPLE [(src1)x.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.val2 EXPRESSION [(src)x.null, (src)x1.null, ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src1)x.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/groupby1.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby1.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby1.q.out (working copy) @@ -64,7 +64,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-16_13-04-05_232_8394152903633989016/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-06-07_922_3209847934681708873/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -108,7 +108,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_g1 + name: default.dest_g1 Stage: Stage-0 Move Operator @@ -118,7 +118,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_g1 + name: default.dest_g1 Stage: Stage-3 Stats-Aggr Operator @@ -137,11 +137,11 @@ PREHOOK: query: SELECT dest_g1.* FROM dest_g1 PREHOOK: type: QUERY PREHOOK: Input: default@dest_g1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-16_13-04-15_579_9082371312952892786/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-06-21_122_1113140110142534468/-mr-10000 POSTHOOK: query: SELECT dest_g1.* FROM dest_g1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_g1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-16_13-04-15_579_9082371312952892786/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-06-21_122_1113140110142534468/-mr-10000 POSTHOOK: Lineage: dest_g1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_g1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] 0 0.0 Index: ql/src/test/results/clientpositive/bucketmapjoin2.q.out =================================================================== --- ql/src/test/results/clientpositive/bucketmapjoin2.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/bucketmapjoin2.q.out (working copy) @@ -122,10 +122,10 @@ Alias Bucket Base File Name Mapping: b {srcbucket20.txt=[srcbucket22.txt], srcbucket21.txt=[srcbucket23.txt]} Alias Bucket File Name Mapping: - b {pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket22.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket23.txt]} + b {pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket22.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket23.txt]} Alias Bucket Output File Name Mapping: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt 0 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt 1 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt 0 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt 1 Stage: Stage-1 Map Reduce @@ -167,9 +167,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-34-20_832_2901319784199272686/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-49_282_1130059401140107511/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-34-20_832_2901319784199272686/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-49_282_1130059401140107511/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -179,14 +179,14 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266460 + transient_lastDdlTime 1297245049 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -194,9 +194,9 @@ Map Reduce Local Work Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin [a] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin [a] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin Partition base file name: srcbucket_mapjoin input format: org.apache.hadoop.mapred.TextInputFormat @@ -208,12 +208,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/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin - name srcbucket_mapjoin + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin + name default.srcbucket_mapjoin serialization.ddl struct srcbucket_mapjoin { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266453 + transient_lastDdlTime 1297245044 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -225,15 +225,15 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin - name srcbucket_mapjoin + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin + name default.srcbucket_mapjoin serialization.ddl struct srcbucket_mapjoin { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266453 + transient_lastDdlTime 1297245044 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket_mapjoin - name: srcbucket_mapjoin + name: default.srcbucket_mapjoin + name: default.srcbucket_mapjoin Stage: Stage-5 Conditional Operator @@ -242,14 +242,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-34-20_832_2901319784199272686/-ext-10002 - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-34-20_832_2901319784199272686/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-49_282_1130059401140107511/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-49_282_1130059401140107511/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-34-20_832_2901319784199272686/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-49_282_1130059401140107511/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -259,28 +259,28 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266460 + transient_lastDdlTime 1297245049 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - tmp directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-34-20_832_2901319784199272686/-ext-10001 + name: default.bucketmapjoin_tmp_result + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-49_282_1130059401140107511/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-34-20_832_2901319784199272686/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-49_282_1130059401140107511/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-34-20_832_2901319784199272686/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-49_282_1130059401140107511/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-34-20_832_2901319784199272686/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-49_282_1130059401140107511/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -291,22 +291,22 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266460 + transient_lastDdlTime 1297245049 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-34-20_832_2901319784199272686/-ext-10002 [pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-34-20_832_2901319784199272686/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-49_282_1130059401140107511/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-49_282_1130059401140107511/-ext-10002] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-34-20_832_2901319784199272686/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-50-49_282_1130059401140107511/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -317,12 +317,12 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266460 + transient_lastDdlTime 1297245049 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -333,15 +333,15 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266460 + transient_lastDdlTime 1297245049 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result PREHOOK: query: insert overwrite table bucketmapjoin_tmp_result @@ -366,11 +366,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-34-36_359_6171516716162381131/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-50-56_751_1360858255923013647/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-34-36_359_6171516716162381131/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-50-56_751_1360858255923013647/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_tmp_result.key SIMPLE [(srcbucket_mapjoin)a.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_tmp_result.value1 SIMPLE [(srcbucket_mapjoin)a.FieldSchema(name:value, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_tmp_result.value2 SIMPLE [(srcbucket_mapjoin_part_2)b.FieldSchema(name:value, type:string, comment:null), ] @@ -419,11 +419,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-35-01_891_630655332694050726/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-51-11_543_7675383789123501255/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-35-01_891_630655332694050726/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-51-11_543_7675383789123501255/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value2 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value2, type:string, comment:null), ] @@ -462,14 +462,14 @@ PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_hash_result_1 PREHOOK: Input: default@bucketmapjoin_hash_result_2 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-35-13_985_5479572132827959046/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-51-25_478_5667308865004740130/-mr-10000 POSTHOOK: query: select a.key-b.key, a.value1-b.value1, a.value2-b.value2 from bucketmapjoin_hash_result_1 a left outer join bucketmapjoin_hash_result_2 b on a.key = b.key POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_hash_result_1 POSTHOOK: Input: default@bucketmapjoin_hash_result_2 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-35-13_985_5479572132827959046/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-51-25_478_5667308865004740130/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value2 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value2, type:string, comment:null), ] @@ -544,10 +544,10 @@ Alias Bucket Base File Name Mapping: a {srcbucket22.txt=[srcbucket20.txt], srcbucket23.txt=[srcbucket21.txt]} Alias Bucket File Name Mapping: - a {pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket22.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket23.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt]} + a {pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket22.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket23.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt]} Alias Bucket Output File Name Mapping: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket22.txt 0 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket23.txt 1 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket22.txt 0 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket23.txt 1 Stage: Stage-1 Map Reduce @@ -594,9 +594,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-35-19_461_1296140382333824913/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-51-29_247_6313777104298474739/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-35-19_461_1296140382333824913/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-51-29_247_6313777104298474739/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -606,8 +606,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 0 @@ -615,9 +615,9 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 0 - transient_lastDdlTime 1289266501 + transient_lastDdlTime 1297245071 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -625,9 +625,9 @@ Map Reduce Local Work Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08 [b] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08 [b] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08 Partition base file name: ds=2008-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -641,13 +641,13 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2 - name srcbucket_mapjoin_part_2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08 + name default.srcbucket_mapjoin_part_2 partition_columns ds serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266458 + transient_lastDdlTime 1297245047 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -659,16 +659,16 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2 - name srcbucket_mapjoin_part_2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2 + name default.srcbucket_mapjoin_part_2 partition_columns ds serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266458 + transient_lastDdlTime 1297245047 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket_mapjoin_part_2 - name: srcbucket_mapjoin_part_2 + name: default.srcbucket_mapjoin_part_2 + name: default.srcbucket_mapjoin_part_2 Stage: Stage-5 Conditional Operator @@ -677,14 +677,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-35-19_461_1296140382333824913/-ext-10002 - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-35-19_461_1296140382333824913/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-51-29_247_6313777104298474739/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-51-29_247_6313777104298474739/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-35-19_461_1296140382333824913/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-51-29_247_6313777104298474739/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -694,8 +694,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 0 @@ -703,23 +703,23 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 0 - transient_lastDdlTime 1289266501 + transient_lastDdlTime 1297245071 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - tmp directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-35-19_461_1296140382333824913/-ext-10001 + name: default.bucketmapjoin_tmp_result + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-51-29_247_6313777104298474739/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-35-19_461_1296140382333824913/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-51-29_247_6313777104298474739/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-35-19_461_1296140382333824913/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-51-29_247_6313777104298474739/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-35-19_461_1296140382333824913/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-51-29_247_6313777104298474739/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -730,8 +730,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 0 @@ -739,17 +739,17 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 0 - transient_lastDdlTime 1289266501 + transient_lastDdlTime 1297245071 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-35-19_461_1296140382333824913/-ext-10002 [pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-35-19_461_1296140382333824913/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-51-29_247_6313777104298474739/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-51-29_247_6313777104298474739/-ext-10002] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-35-19_461_1296140382333824913/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-51-29_247_6313777104298474739/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -760,8 +760,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 0 @@ -769,7 +769,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 0 - transient_lastDdlTime 1289266501 + transient_lastDdlTime 1297245071 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -780,8 +780,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 0 @@ -789,10 +789,10 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 0 - transient_lastDdlTime 1289266501 + transient_lastDdlTime 1297245071 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result PREHOOK: query: insert overwrite table bucketmapjoin_tmp_result @@ -829,11 +829,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-35-35_044_8009627533587099101/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-51-43_268_9161123826145655583/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-35-35_044_8009627533587099101/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-51-43_268_9161123826145655583/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value2 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value2, type:string, comment:null), ] @@ -918,11 +918,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-36-01_094_6860647864472235592/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-51-59_092_2303586605016829852/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-36-01_094_6860647864472235592/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-51-59_092_2303586605016829852/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] @@ -985,14 +985,14 @@ PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_hash_result_1 PREHOOK: Input: default@bucketmapjoin_hash_result_2 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-36-12_221_3121293415450965317/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-52-11_155_6860795198164669012/-mr-10000 POSTHOOK: query: select a.key-b.key, a.value1-b.value1, a.value2-b.value2 from bucketmapjoin_hash_result_1 a left outer join bucketmapjoin_hash_result_2 b on a.key = b.key POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_hash_result_1 POSTHOOK: Input: default@bucketmapjoin_hash_result_2 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-36-12_221_3121293415450965317/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-52-11_155_6860795198164669012/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] Index: ql/src/test/results/clientpositive/groupby11.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby11.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby11.q.out (working copy) @@ -93,7 +93,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-13-06_619_2524206957556241682/-mr-10004 + file:/tmp/sdong/hive_2011-02-09_02-06-44_135_632158336932761356/-mr-10004 Reduce Output Operator key expressions: expr: _col0 @@ -144,7 +144,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -156,7 +156,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-4 Stats-Aggr Operator @@ -164,7 +164,7 @@ Stage: Stage-5 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-13-06_619_2524206957556241682/-mr-10005 + file:/tmp/sdong/hive_2011-02-09_02-06-44_135_632158336932761356/-mr-10005 Reduce Output Operator key expressions: expr: _col0 @@ -215,7 +215,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-1 Move Operator @@ -227,7 +227,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-6 Stats-Aggr Operator @@ -260,11 +260,11 @@ PREHOOK: query: SELECT * from dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1@ds=111 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-13-23_878_7631144378551966147/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-06-56_887_1142063810774532551/-mr-10000 POSTHOOK: query: SELECT * from dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1@ds=111 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-13-23_878_7631144378551966147/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-06-56_887_1142063810774532551/-mr-10000 POSTHOOK: Lineage: dest1 PARTITION(ds=111).key SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1 PARTITION(ds=111).val1 EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1 PARTITION(ds=111).val2 EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -583,11 +583,11 @@ PREHOOK: query: SELECT * from dest2 PREHOOK: type: QUERY PREHOOK: Input: default@dest2@ds=111 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-13-24_357_749669543090460434/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-06-57_245_2775548861859166384/-mr-10000 POSTHOOK: query: SELECT * from dest2 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest2@ds=111 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-13-24_357_749669543090460434/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-06-57_245_2775548861859166384/-mr-10000 POSTHOOK: Lineage: dest1 PARTITION(ds=111).key SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1 PARTITION(ds=111).val1 EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1 PARTITION(ds=111).val2 EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/mapreduce7.q.out =================================================================== --- ql/src/test/results/clientpositive/mapreduce7.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/mapreduce7.q.out (working copy) @@ -97,7 +97,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -107,7 +107,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -138,11 +138,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-03-52_601_3536108148585696889/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-05-47_753_3661075990815463641/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-03-52_601_3536108148585696889/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-05-47_753_3661075990815463641/-mr-10000 POSTHOOK: Lineage: dest1.k SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.key SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.one SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/udf_explode.q.out =================================================================== --- ql/src/test/results/clientpositive/udf_explode.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/udf_explode.q.out (working copy) @@ -38,9 +38,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/nzhang/hive_2010-09-15_17-19-40_025_3910076199083461129/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-58-36_048_67092722721292892/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/nzhang/hive_2010-09-15_17-19-40_025_3910076199083461129/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-58-36_048_67092722721292892/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -53,9 +53,9 @@ MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src [src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [src] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -66,12 +66,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284588338 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -82,15 +82,15 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284588338 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src + name: default.src + name: default.src Stage: Stage-0 Fetch Operator @@ -133,9 +133,9 @@ type: int Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src [a:src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [a:src] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -146,12 +146,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284588338 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -162,15 +162,15 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284588338 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src + name: default.src + name: default.src Reduce Operator Tree: Extract Limit @@ -191,7 +191,7 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/nzhang/hive_2010-09-15_17-19-40_065_141080764987446855/-mr-10002 + directory: file:/tmp/sdong/hive_2011-02-09_03-58-36_131_9153788937463144092/-mr-10002 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -207,7 +207,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-15_17-19-40_065_141080764987446855/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_03-58-36_131_9153788937463144092/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -222,9 +222,9 @@ type: bigint Needs Tagging: false Path -> Alias: - file:/tmp/nzhang/hive_2010-09-15_17-19-40_065_141080764987446855/-mr-10002 [file:/tmp/nzhang/hive_2010-09-15_17-19-40_065_141080764987446855/-mr-10002] + file:/tmp/sdong/hive_2011-02-09_03-58-36_131_9153788937463144092/-mr-10002 [file:/tmp/sdong/hive_2011-02-09_03-58-36_131_9153788937463144092/-mr-10002] Path -> Partition: - file:/tmp/nzhang/hive_2010-09-15_17-19-40_065_141080764987446855/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_03-58-36_131_9153788937463144092/-mr-10002 Partition base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -260,9 +260,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/nzhang/hive_2010-09-15_17-19-40_065_141080764987446855/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-58-36_131_9153788937463144092/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/nzhang/hive_2010-09-15_17-19-40_065_141080764987446855/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-58-36_131_9153788937463144092/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -282,33 +282,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/nzhang/hive_2010-09-15_17-19-40_117_2393476748831762851/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-58-36_225_3568111081529897817/-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/nzhang/hive_2010-09-15_17-19-40_117_2393476748831762851/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-58-36_225_3568111081529897817/-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/nzhang/hive_2010-09-15_17-20-00_614_4063766451500768976/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-58-39_477_8167356870285839464/-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/nzhang/hive_2010-09-15_17-20-00_614_4063766451500768976/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-58-39_477_8167356870285839464/-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/nzhang/hive_2010-09-15_17-20-08_183_2692769490322479197/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-58-42_752_620470248647434170/-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/nzhang/hive_2010-09-15_17-20-08_183_2692769490322479197/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-58-42_752_620470248647434170/-mr-10000 1 1 2 1 3 1 Index: ql/src/test/results/clientpositive/groupby2_map.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby2_map.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby2_map.q.out (working copy) @@ -97,7 +97,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -107,7 +107,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -129,11 +129,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-14-26_222_9011795612818915282/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-07-57_463_2393765485815698787/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-14-26_222_9011795612818915282/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-07-57_463_2393765485815698787/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c2 EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/join_map_ppr.q.out =================================================================== --- ql/src/test/results/clientpositive/join_map_ppr.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join_map_ppr.q.out (working copy) @@ -123,9 +123,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-10_467_2293155916770670069/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-20_389_5823351336608594189/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-10_467_2293155916770670069/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-20_389_5823351336608594189/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -135,14 +135,14 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, string val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289272690 + transient_lastDdlTime 1297248440 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -150,9 +150,9 @@ Map Reduce Local Work Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [z] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [z] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -166,13 +166,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/liyintang/hive-1754/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289268000 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -183,16 +183,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/liyintang/hive-1754/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289268000 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Stage: Stage-5 Conditional Operator @@ -201,14 +201,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-10_467_2293155916770670069/-ext-10002 - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-10_467_2293155916770670069/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-20_389_5823351336608594189/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-20_389_5823351336608594189/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-10_467_2293155916770670069/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-20_389_5823351336608594189/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -218,28 +218,28 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, string val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289272690 + transient_lastDdlTime 1297248440 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 - tmp directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-10_467_2293155916770670069/-ext-10001 + name: default.dest_j1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-20_389_5823351336608594189/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-10_467_2293155916770670069/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-20_389_5823351336608594189/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-10_467_2293155916770670069/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-20_389_5823351336608594189/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-10_467_2293155916770670069/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-20_389_5823351336608594189/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -250,22 +250,22 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, string val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289272690 + transient_lastDdlTime 1297248440 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-10_467_2293155916770670069/-ext-10002 [pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-10_467_2293155916770670069/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-20_389_5823351336608594189/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-20_389_5823351336608594189/-ext-10002] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-10_467_2293155916770670069/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-20_389_5823351336608594189/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -276,12 +276,12 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, string val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289272690 + transient_lastDdlTime 1297248440 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -292,15 +292,15 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, string val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289272690 + transient_lastDdlTime 1297248440 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 - name: dest_j1 + name: default.dest_j1 + name: default.dest_j1 PREHOOK: query: INSERT OVERWRITE TABLE dest_j1 @@ -329,11 +329,11 @@ PREHOOK: query: select * from dest_j1 x order by x.key PREHOOK: type: QUERY PREHOOK: Input: default@dest_j1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_19-18-20_736_2131780804835036352/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-47-27_699_7144562768884957796/-mr-10000 POSTHOOK: query: select * from dest_j1 x order by x.key POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_j1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_19-18-20_736_2131780804835036352/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-47-27_699_7144562768884957796/-mr-10000 POSTHOOK: Lineage: dest_j1.key SIMPLE [(src1)x.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.val2 SIMPLE [(src)y.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(srcpart)z.FieldSchema(name:value, type:string, comment:default), ] @@ -615,9 +615,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-37_907_7726137335023848601/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-40_354_6813354092882568698/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-37_907_7726137335023848601/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-40_354_6813354092882568698/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -627,8 +627,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 numFiles 1 numPartitions 0 numRows 107 @@ -636,9 +636,9 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 2125 - transient_lastDdlTime 1289272700 + transient_lastDdlTime 1297248447 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -646,9 +646,9 @@ Map Reduce Local Work Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [z] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [z] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -662,13 +662,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/liyintang/hive-1754/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289268000 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -679,16 +679,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/liyintang/hive-1754/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1289268000 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Stage: Stage-5 Conditional Operator @@ -697,14 +697,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-37_907_7726137335023848601/-ext-10002 - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-37_907_7726137335023848601/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-40_354_6813354092882568698/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-40_354_6813354092882568698/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-37_907_7726137335023848601/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-40_354_6813354092882568698/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -714,8 +714,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 numFiles 1 numPartitions 0 numRows 107 @@ -723,23 +723,23 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 2125 - transient_lastDdlTime 1289272700 + transient_lastDdlTime 1297248447 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 - tmp directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-37_907_7726137335023848601/-ext-10001 + name: default.dest_j1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-40_354_6813354092882568698/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-37_907_7726137335023848601/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-40_354_6813354092882568698/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-37_907_7726137335023848601/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-40_354_6813354092882568698/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-37_907_7726137335023848601/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-40_354_6813354092882568698/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -750,8 +750,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 numFiles 1 numPartitions 0 numRows 107 @@ -759,17 +759,17 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 2125 - transient_lastDdlTime 1289272700 + transient_lastDdlTime 1297248447 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-37_907_7726137335023848601/-ext-10002 [pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-37_907_7726137335023848601/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-40_354_6813354092882568698/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-40_354_6813354092882568698/-ext-10002] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-18-37_907_7726137335023848601/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-47-40_354_6813354092882568698/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -780,8 +780,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 numFiles 1 numPartitions 0 numRows 107 @@ -789,7 +789,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 2125 - transient_lastDdlTime 1289272700 + transient_lastDdlTime 1297248447 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -800,8 +800,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 numFiles 1 numPartitions 0 numRows 107 @@ -809,10 +809,10 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 2125 - transient_lastDdlTime 1289272700 + transient_lastDdlTime 1297248447 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 - name: dest_j1 + name: default.dest_j1 + name: default.dest_j1 PREHOOK: query: INSERT OVERWRITE TABLE dest_j1 @@ -848,11 +848,11 @@ PREHOOK: query: select * from dest_j1 x order by x.key PREHOOK: type: QUERY PREHOOK: Input: default@dest_j1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_19-18-49_147_7316712558387738462/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-47-47_666_8015387355796242140/-mr-10000 POSTHOOK: query: select * from dest_j1 x order by x.key POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_j1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_19-18-49_147_7316712558387738462/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-47-47_666_8015387355796242140/-mr-10000 POSTHOOK: Lineage: dest_j1.key SIMPLE [(src1)x.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.key SIMPLE [(src1_copy)x.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: dest_j1.val2 SIMPLE [(src)y.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/stats0.q.out =================================================================== --- ql/src/test/results/clientpositive/stats0.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/stats0.q.out (working copy) @@ -37,9 +37,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/scratchdir/hive_2010-10-11_12-39-56_888_8633906021259923490/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-44-10_477_1481044212718463810/-ext-10000 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/scratchdir/hive_2010-10-11_12-39-56_888_8633906021259923490/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-44-10_477_1481044212718463810/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -49,22 +49,22 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/test/data/warehouse/stats_non_partitioned - name stats_non_partitioned + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/stats_non_partitioned + name default.stats_non_partitioned serialization.ddl struct stats_non_partitioned { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1286825996 + transient_lastDdlTime 1297251850 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: stats_non_partitioned + name: default.stats_non_partitioned TotalFiles: 1 GatherStats: true MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/test/data/warehouse/src [src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [src] Path -> Partition: - pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -75,12 +75,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1286825995 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -91,21 +91,21 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1286825995 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src + name: default.src + name: default.src Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/scratchdir/hive_2010-10-11_12-39-56_888_8633906021259923490/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-44-10_477_1481044212718463810/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -115,19 +115,19 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/test/data/warehouse/stats_non_partitioned - name stats_non_partitioned + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/stats_non_partitioned + name default.stats_non_partitioned serialization.ddl struct stats_non_partitioned { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1286825996 + transient_lastDdlTime 1297251850 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: stats_non_partitioned - tmp directory: pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/scratchdir/hive_2010-10-11_12-39-56_888_8633906021259923490/-ext-10001 + name: default.stats_non_partitioned + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-44-10_477_1481044212718463810/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/scratchdir/hive_2010-10-11_12-39-56_888_8633906021259923490/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-44-10_477_1481044212718463810/-ext-10000/ PREHOOK: query: insert overwrite table stats_non_partitioned @@ -151,15 +151,15 @@ key string value string -Detailed Table Information Table(tableName:stats_non_partitioned, dbName:default, owner:thiruvel, createTime:1286825996, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:null), FieldSchema(name:value, type:string, comment:null)], location:pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/test/data/warehouse/stats_non_partitioned, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[], parameters:{numPartitions=0, numFiles=1, transient_lastDdlTime=1286826001, numRows=500, totalSize=5812}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:stats_non_partitioned, dbName:default, owner:sdong, createTime:1297251850, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:null), FieldSchema(name:value, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/stats_non_partitioned, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[], parameters:{numPartitions=0, numFiles=1, transient_lastDdlTime=1297251855, numRows=500, totalSize=5812}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) PREHOOK: query: select * from stats_non_partitioned PREHOOK: type: QUERY PREHOOK: Input: default@stats_non_partitioned -PREHOOK: Output: file:/tmp/thiruvel/hive_2010-10-11_12-40-01_425_1999440609925877473/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-44-16_055_4154512907230347064/-mr-10000 POSTHOOK: query: select * from stats_non_partitioned POSTHOOK: type: QUERY POSTHOOK: Input: default@stats_non_partitioned -POSTHOOK: Output: file:/tmp/thiruvel/hive_2010-10-11_12-40-01_425_1999440609925877473/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-44-16_055_4154512907230347064/-mr-10000 POSTHOOK: Lineage: stats_non_partitioned.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: stats_non_partitioned.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] 238 val_238 @@ -708,7 +708,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: stats_partitioned + name: default.stats_partitioned Stage: Stage-0 Move Operator @@ -720,7 +720,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: stats_partitioned + name: default.stats_partitioned Stage: Stage-2 Stats-Aggr Operator @@ -752,11 +752,11 @@ PREHOOK: query: select * from stats_partitioned where ds is not null PREHOOK: type: QUERY PREHOOK: Input: default@stats_partitioned@ds=1 -PREHOOK: Output: file:/tmp/thiruvel/hive_2010-10-11_12-40-05_452_8160090432534415125/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-44-21_235_462713448126848212/-mr-10000 POSTHOOK: query: select * from stats_partitioned where ds is not null POSTHOOK: type: QUERY POSTHOOK: Input: default@stats_partitioned@ds=1 -POSTHOOK: Output: file:/tmp/thiruvel/hive_2010-10-11_12-40-05_452_8160090432534415125/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-44-21_235_462713448126848212/-mr-10000 POSTHOOK: Lineage: stats_non_partitioned.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: stats_non_partitioned.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: stats_partitioned PARTITION(ds=1).key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -1273,7 +1273,7 @@ value string ds string -Detailed Partition Information Partition(values:[1], dbName:default, tableName:stats_partitioned, createTime:1286826005, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:null), FieldSchema(name:value, type:string, comment:null)], location:pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/test/data/warehouse/stats_partitioned/ds=1, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1286826005, numRows=500, totalSize=5812}) +Detailed Partition Information Partition(values:[1], dbName:default, tableName:stats_partitioned, createTime:1297251860, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:null), FieldSchema(name:value, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/stats_partitioned/ds=1, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1297251861, numRows=500, totalSize=5812}) PREHOOK: query: describe extended stats_partitioned PREHOOK: type: DESCTABLE POSTHOOK: query: describe extended stats_partitioned @@ -1286,7 +1286,7 @@ value string ds string -Detailed Table Information Table(tableName:stats_partitioned, dbName:default, owner:thiruvel, createTime:1286826001, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:null), FieldSchema(name:value, type:string, comment:null), FieldSchema(name:ds, type:string, comment:null)], location:pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/test/data/warehouse/stats_partitioned, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null)], parameters:{numPartitions=1, numFiles=1, transient_lastDdlTime=1286826005, numRows=500, totalSize=5812}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:stats_partitioned, dbName:default, owner:sdong, createTime:1297251856, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:null), FieldSchema(name:value, type:string, comment:null), FieldSchema(name:ds, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/stats_partitioned, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null)], parameters:{numPartitions=1, numFiles=1, transient_lastDdlTime=1297251861, numRows=500, totalSize=5812}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) PREHOOK: query: drop table stats_non_partitioned PREHOOK: type: DROPTABLE PREHOOK: Input: default@stats_non_partitioned @@ -1361,9 +1361,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/scratchdir/hive_2010-10-11_12-40-06_453_7501705445146051221/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-44-22_044_1414134644885524955/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/scratchdir/hive_2010-10-11_12-40-06_453_7501705445146051221/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-44-22_044_1414134644885524955/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1373,22 +1373,22 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/test/data/warehouse/stats_non_partitioned - name stats_non_partitioned + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/stats_non_partitioned + name default.stats_non_partitioned serialization.ddl struct stats_non_partitioned { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1286826006 + transient_lastDdlTime 1297251862 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: stats_non_partitioned + name: default.stats_non_partitioned TotalFiles: 1 GatherStats: true MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/test/data/warehouse/src [src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [src] Path -> Partition: - pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -1399,12 +1399,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1286825995 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1415,15 +1415,15 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1286825995 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src + name: default.src + name: default.src Stage: Stage-5 Conditional Operator @@ -1432,14 +1432,14 @@ Move Operator files: hdfs directory: true - source: pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/scratchdir/hive_2010-10-11_12-40-06_453_7501705445146051221/-ext-10002 - destination: pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/scratchdir/hive_2010-10-11_12-40-06_453_7501705445146051221/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-44-22_044_1414134644885524955/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-44-22_044_1414134644885524955/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/scratchdir/hive_2010-10-11_12-40-06_453_7501705445146051221/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-44-22_044_1414134644885524955/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1449,28 +1449,28 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/test/data/warehouse/stats_non_partitioned - name stats_non_partitioned + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/stats_non_partitioned + name default.stats_non_partitioned serialization.ddl struct stats_non_partitioned { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1286826006 + transient_lastDdlTime 1297251862 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: stats_non_partitioned - tmp directory: pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/scratchdir/hive_2010-10-11_12-40-06_453_7501705445146051221/-ext-10001 + name: default.stats_non_partitioned + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-44-22_044_1414134644885524955/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/scratchdir/hive_2010-10-11_12-40-06_453_7501705445146051221/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-44-22_044_1414134644885524955/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/scratchdir/hive_2010-10-11_12-40-06_453_7501705445146051221/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-44-22_044_1414134644885524955/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/scratchdir/hive_2010-10-11_12-40-06_453_7501705445146051221/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-44-22_044_1414134644885524955/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -1481,22 +1481,22 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/test/data/warehouse/stats_non_partitioned - name stats_non_partitioned + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/stats_non_partitioned + name default.stats_non_partitioned serialization.ddl struct stats_non_partitioned { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1286826006 + transient_lastDdlTime 1297251862 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: stats_non_partitioned + name: default.stats_non_partitioned TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/scratchdir/hive_2010-10-11_12-40-06_453_7501705445146051221/-ext-10002 [pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/scratchdir/hive_2010-10-11_12-40-06_453_7501705445146051221/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-44-22_044_1414134644885524955/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-44-22_044_1414134644885524955/-ext-10002] Path -> Partition: - pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/scratchdir/hive_2010-10-11_12-40-06_453_7501705445146051221/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-44-22_044_1414134644885524955/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -1507,12 +1507,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/test/data/warehouse/stats_non_partitioned - name stats_non_partitioned + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/stats_non_partitioned + name default.stats_non_partitioned serialization.ddl struct stats_non_partitioned { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1286826006 + transient_lastDdlTime 1297251862 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1523,15 +1523,15 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/test/data/warehouse/stats_non_partitioned - name stats_non_partitioned + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/stats_non_partitioned + name default.stats_non_partitioned serialization.ddl struct stats_non_partitioned { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1286826006 + transient_lastDdlTime 1297251862 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: stats_non_partitioned - name: stats_non_partitioned + name: default.stats_non_partitioned + name: default.stats_non_partitioned PREHOOK: query: insert overwrite table stats_non_partitioned @@ -1563,15 +1563,15 @@ key string value string -Detailed Table Information Table(tableName:stats_non_partitioned, dbName:default, owner:thiruvel, createTime:1286826006, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:null), FieldSchema(name:value, type:string, comment:null)], location:pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/test/data/warehouse/stats_non_partitioned, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[], parameters:{numPartitions=0, numFiles=1, transient_lastDdlTime=1286826009, numRows=500, totalSize=5812}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:stats_non_partitioned, dbName:default, owner:sdong, createTime:1297251862, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:null), FieldSchema(name:value, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/stats_non_partitioned, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[], parameters:{numPartitions=0, numFiles=1, transient_lastDdlTime=1297251866, numRows=500, totalSize=5812}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) PREHOOK: query: select * from stats_non_partitioned PREHOOK: type: QUERY PREHOOK: Input: default@stats_non_partitioned -PREHOOK: Output: file:/tmp/thiruvel/hive_2010-10-11_12-40-09_882_2561691140403474623/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-44-26_856_3137139307255613005/-mr-10000 POSTHOOK: query: select * from stats_non_partitioned POSTHOOK: type: QUERY POSTHOOK: Input: default@stats_non_partitioned -POSTHOOK: Output: file:/tmp/thiruvel/hive_2010-10-11_12-40-09_882_2561691140403474623/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-44-26_856_3137139307255613005/-mr-10000 POSTHOOK: Lineage: stats_non_partitioned.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: stats_non_partitioned.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: stats_non_partitioned.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] @@ -2135,7 +2135,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: stats_partitioned + name: default.stats_partitioned Stage: Stage-5 Conditional Operator @@ -2144,7 +2144,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/scratchdir/hive_2010-10-11_12-40-10_020_2736829673279856717/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-44-27_214_424269474991931478/-ext-10000 Stage: Stage-0 Move Operator @@ -2156,7 +2156,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: stats_partitioned + name: default.stats_partitioned Stage: Stage-2 Stats-Aggr Operator @@ -2164,7 +2164,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/scratchdir/hive_2010-10-11_12-40-10_020_2736829673279856717/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-44-27_214_424269474991931478/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -2172,7 +2172,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: stats_partitioned + name: default.stats_partitioned PREHOOK: query: insert overwrite table stats_partitioned partition (ds='1') @@ -2209,11 +2209,11 @@ PREHOOK: query: select * from stats_partitioned where ds is not null PREHOOK: type: QUERY PREHOOK: Input: default@stats_partitioned@ds=1 -PREHOOK: Output: file:/tmp/thiruvel/hive_2010-10-11_12-40-13_807_595319153848714979/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-44-32_164_4407049732117203662/-mr-10000 POSTHOOK: query: select * from stats_partitioned where ds is not null POSTHOOK: type: QUERY POSTHOOK: Input: default@stats_partitioned@ds=1 -POSTHOOK: Output: file:/tmp/thiruvel/hive_2010-10-11_12-40-13_807_595319153848714979/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-44-32_164_4407049732117203662/-mr-10000 POSTHOOK: Lineage: stats_non_partitioned.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: stats_non_partitioned.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: stats_non_partitioned.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] @@ -2738,7 +2738,7 @@ value string ds string -Detailed Partition Information Partition(values:[1], dbName:default, tableName:stats_partitioned, createTime:1286826013, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:null), FieldSchema(name:value, type:string, comment:null)], location:pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/test/data/warehouse/stats_partitioned/ds=1, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1286826013, numRows=500, totalSize=5812}) +Detailed Partition Information Partition(values:[1], dbName:default, tableName:stats_partitioned, createTime:1297251871, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:null), FieldSchema(name:value, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/stats_partitioned/ds=1, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1297251871, numRows=500, totalSize=5812}) PREHOOK: query: describe extended stats_partitioned PREHOOK: type: DESCTABLE POSTHOOK: query: describe extended stats_partitioned @@ -2755,4 +2755,4 @@ value string ds string -Detailed Table Information Table(tableName:stats_partitioned, dbName:default, owner:thiruvel, createTime:1286826010, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:null), FieldSchema(name:value, type:string, comment:null), FieldSchema(name:ds, type:string, comment:null)], location:pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/test/data/warehouse/stats_partitioned, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null)], parameters:{numPartitions=1, numFiles=1, transient_lastDdlTime=1286826013, numRows=500, totalSize=5812}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:stats_partitioned, dbName:default, owner:sdong, createTime:1297251867, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:null), FieldSchema(name:value, type:string, comment:null), FieldSchema(name:ds, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/stats_partitioned, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null)], parameters:{numPartitions=1, numFiles=1, transient_lastDdlTime=1297251871, numRows=500, totalSize=5812}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) Index: ql/src/test/results/clientpositive/ppd_multi_insert.q.out =================================================================== --- ql/src/test/results/clientpositive/ppd_multi_insert.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/ppd_multi_insert.q.out (working copy) @@ -107,7 +107,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: mi1 + name: default.mi1 Filter Operator predicate: expr: ((_col0 >= 100) and (_col0 < 200)) @@ -133,7 +133,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: mi2 + name: default.mi2 Filter Operator predicate: expr: ((_col0 >= 200) and (_col0 < 300)) @@ -155,7 +155,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: mi3 + name: default.mi3 Filter Operator predicate: expr: (_col0 >= 300) @@ -180,7 +180,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: mi1 + name: default.mi1 Stage: Stage-5 Stats-Aggr Operator @@ -193,7 +193,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: mi2 + name: default.mi2 Stage: Stage-6 Stats-Aggr Operator @@ -209,7 +209,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: mi3 + name: default.mi3 Stage: Stage-7 Stats-Aggr Operator @@ -251,11 +251,11 @@ PREHOOK: query: SELECT mi1.* FROM mi1 PREHOOK: type: QUERY PREHOOK: Input: default@mi1 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-11_09-15-27_727_3572542851489673202/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-22-29_752_368282984525351309/-mr-10000 POSTHOOK: query: SELECT mi1.* FROM mi1 POSTHOOK: type: QUERY POSTHOOK: Input: default@mi1 -POSTHOOK: Output: file:/tmp/njain/hive_2010-11-11_09-15-27_727_3572542851489673202/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-22-29_752_368282984525351309/-mr-10000 POSTHOOK: Lineage: mi1.key EXPRESSION [(src)a.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: mi1.value SIMPLE [(src)a.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: mi2.key EXPRESSION [(src)a.FieldSchema(name:key, type:string, comment:default), ] @@ -412,11 +412,11 @@ PREHOOK: query: SELECT mi2.* FROM mi2 PREHOOK: type: QUERY PREHOOK: Input: default@mi2 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-11_09-15-28_023_307854968020208171/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-22-30_038_5848528334108071564/-mr-10000 POSTHOOK: query: SELECT mi2.* FROM mi2 POSTHOOK: type: QUERY POSTHOOK: Input: default@mi2 -POSTHOOK: Output: file:/tmp/njain/hive_2010-11-11_09-15-28_023_307854968020208171/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-22-30_038_5848528334108071564/-mr-10000 POSTHOOK: Lineage: mi1.key EXPRESSION [(src)a.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: mi1.value SIMPLE [(src)a.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: mi2.key EXPRESSION [(src)a.FieldSchema(name:key, type:string, comment:default), ] @@ -636,11 +636,11 @@ PREHOOK: query: SELECT mi3.* FROM mi3 PREHOOK: type: QUERY PREHOOK: Input: default@mi3@ds=2008-04-08/hr=12 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-11_09-15-28_324_6189844014644056674/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-22-30_333_6048747191758188206/-mr-10000 POSTHOOK: query: SELECT mi3.* FROM mi3 POSTHOOK: type: QUERY POSTHOOK: Input: default@mi3@ds=2008-04-08/hr=12 -POSTHOOK: Output: file:/tmp/njain/hive_2010-11-11_09-15-28_324_6189844014644056674/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-22-30_333_6048747191758188206/-mr-10000 POSTHOOK: Lineage: mi1.key EXPRESSION [(src)a.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: mi1.value SIMPLE [(src)a.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: mi2.key EXPRESSION [(src)a.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/join9.q.out =================================================================== --- ql/src/test/results/clientpositive/join9.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join9.q.out (working copy) @@ -61,10 +61,10 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/src [src2] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [src1] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [src2] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [src1] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -75,12 +75,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/hive-trunk/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389296 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -91,16 +91,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/hive-trunk/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389296 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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=12 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -114,13 +114,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -131,16 +131,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Join Operator condition map: @@ -172,9 +172,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-41-58_075_5780284635323173562/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-34-44_251_127348021874523045/-ext-10000 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-41-58_075_5780284635323173562/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-34-44_251_127348021874523045/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -184,14 +184,14 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288392118 + transient_lastDdlTime 1297247684 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -200,7 +200,7 @@ Move Operator tables: replace: true - source: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-41-58_075_5780284635323173562/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-34-44_251_127348021874523045/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -210,19 +210,19 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288392118 + transient_lastDdlTime 1297247684 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - tmp directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-41-58_075_5780284635323173562/-ext-10001 + name: default.dest1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-34-44_251_127348021874523045/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-41-58_075_5780284635323173562/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-34-44_251_127348021874523045/-ext-10000/ PREHOOK: query: FROM srcpart src1 JOIN src src2 ON (src1.key = src2.key) @@ -242,11 +242,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/sdong/hive_2010-10-29_15-42-04_241_2764964771312115914/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-34-50_662_3776710587293644154/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/sdong/hive_2010-10-29_15-42-04_241_2764964771312115914/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-34-50_662_3776710587293644154/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(srcpart)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SIMPLE [(src)src2.FieldSchema(name:value, type:string, comment:default), ] 0 val_0 Index: ql/src/test/results/clientpositive/rand_partitionpruner2.q.out =================================================================== --- ql/src/test/results/clientpositive/rand_partitionpruner2.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/rand_partitionpruner2.q.out (working copy) @@ -53,9 +53,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/njain/hive3/build/ql/scratchdir/hive_2011-02-03_11-49-31_456_2816292350579044006/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-24-35_786_8629311831079157605/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/njain/hive3/build/ql/scratchdir/hive_2011-02-03_11-49-31_456_2816292350579044006/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-24-35_786_8629311831079157605/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -65,23 +65,23 @@ columns.types string:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive3/build/ql/test/data/warehouse/tmptable - name tmptable + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/tmptable + name default.tmptable serialization.ddl struct tmptable { string key, string value, string hr, string ds} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1296762571 + transient_lastDdlTime 1297250675 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable + name: default.tmptable TotalFiles: 1 GatherStats: true MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/njain/hive3/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [a] - pfile:/data/users/njain/hive3/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-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] Path -> Partition: - pfile:/data/users/njain/hive3/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -95,13 +95,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/njain/hive3/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296762562 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -112,17 +112,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/njain/hive3/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296762562 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/njain/hive3/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -136,13 +136,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/njain/hive3/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296762562 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -153,16 +153,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/njain/hive3/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1296762562 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Stage: Stage-5 Conditional Operator @@ -171,14 +171,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/njain/hive3/build/ql/scratchdir/hive_2011-02-03_11-49-31_456_2816292350579044006/-ext-10002 - destination: pfile:/data/users/njain/hive3/build/ql/scratchdir/hive_2011-02-03_11-49-31_456_2816292350579044006/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-24-35_786_8629311831079157605/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-24-35_786_8629311831079157605/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/njain/hive3/build/ql/scratchdir/hive_2011-02-03_11-49-31_456_2816292350579044006/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-24-35_786_8629311831079157605/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -188,28 +188,28 @@ columns.types string:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive3/build/ql/test/data/warehouse/tmptable - name tmptable + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/tmptable + name default.tmptable serialization.ddl struct tmptable { string key, string value, string hr, string ds} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1296762571 + transient_lastDdlTime 1297250675 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable - tmp directory: pfile:/data/users/njain/hive3/build/ql/scratchdir/hive_2011-02-03_11-49-31_456_2816292350579044006/-ext-10001 + name: default.tmptable + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-24-35_786_8629311831079157605/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/njain/hive3/build/ql/scratchdir/hive_2011-02-03_11-49-31_456_2816292350579044006/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-24-35_786_8629311831079157605/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/njain/hive3/build/ql/scratchdir/hive_2011-02-03_11-49-31_456_2816292350579044006/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-24-35_786_8629311831079157605/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/njain/hive3/build/ql/scratchdir/hive_2011-02-03_11-49-31_456_2816292350579044006/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-24-35_786_8629311831079157605/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -220,22 +220,22 @@ columns.types string:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive3/build/ql/test/data/warehouse/tmptable - name tmptable + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/tmptable + name default.tmptable serialization.ddl struct tmptable { string key, string value, string hr, string ds} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1296762571 + transient_lastDdlTime 1297250675 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable + name: default.tmptable TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/njain/hive3/build/ql/scratchdir/hive_2011-02-03_11-49-31_456_2816292350579044006/-ext-10002 [pfile:/data/users/njain/hive3/build/ql/scratchdir/hive_2011-02-03_11-49-31_456_2816292350579044006/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-24-35_786_8629311831079157605/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-24-35_786_8629311831079157605/-ext-10002] Path -> Partition: - pfile:/data/users/njain/hive3/build/ql/scratchdir/hive_2011-02-03_11-49-31_456_2816292350579044006/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-24-35_786_8629311831079157605/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -246,12 +246,12 @@ columns.types string:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive3/build/ql/test/data/warehouse/tmptable - name tmptable + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/tmptable + name default.tmptable serialization.ddl struct tmptable { string key, string value, string hr, string ds} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1296762571 + transient_lastDdlTime 1297250675 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -262,15 +262,15 @@ columns.types string:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive3/build/ql/test/data/warehouse/tmptable - name tmptable + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/tmptable + name default.tmptable serialization.ddl struct tmptable { string key, string value, string hr, string ds} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1296762571 + transient_lastDdlTime 1297250675 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable - name: tmptable + name: default.tmptable + name: default.tmptable PREHOOK: query: insert overwrite table tmptable @@ -292,11 +292,11 @@ PREHOOK: query: select * from tmptable x sort by x.key,x.value,x.ds,x.hr PREHOOK: type: QUERY PREHOOK: Input: default@tmptable -PREHOOK: Output: file:/tmp/njain/hive_2011-02-03_11-49-37_501_3000043998617029956/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-24-40_823_8710709718056161340/-mr-10000 POSTHOOK: query: select * from tmptable x sort by x.key,x.value,x.ds,x.hr POSTHOOK: type: QUERY POSTHOOK: Input: default@tmptable -POSTHOOK: Output: file:/tmp/njain/hive_2011-02-03_11-49-37_501_3000043998617029956/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-24-40_823_8710709718056161340/-mr-10000 POSTHOOK: Lineage: tmptable.ds SIMPLE [(srcpart)a.FieldSchema(name:hr, type:string, comment:null), ] POSTHOOK: Lineage: tmptable.hr SIMPLE [(srcpart)a.FieldSchema(name:ds, type:string, comment:null), ] POSTHOOK: Lineage: tmptable.key SIMPLE [(srcpart)a.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/groupby4_noskew.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby4_noskew.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby4_noskew.q.out (working copy) @@ -60,7 +60,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -70,7 +70,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -90,11 +90,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-16-04_350_4543908149102458043/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-10-09_287_5300382233355344398/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-16-04_350_4543908149102458043/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-10-09_287_5300382233355344398/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] 0 1 Index: ql/src/test/results/clientpositive/input12.q.out =================================================================== --- ql/src/test/results/clientpositive/input12.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input12.q.out (working copy) @@ -78,7 +78,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Filter Operator predicate: expr: ((key >= 100) and (key < 200)) @@ -104,7 +104,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Filter Operator predicate: expr: (key >= 200) @@ -126,7 +126,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest3 + name: default.dest3 Stage: Stage-7 Conditional Operator @@ -135,7 +135,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-26-35_986_1783793979784635729/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-19-53_768_6222369111291261943/-ext-10000 Stage: Stage-0 Move Operator @@ -145,7 +145,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-4 Stats-Aggr Operator @@ -153,7 +153,7 @@ Stage: Stage-5 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-26-35_986_1783793979784635729/-ext-10006 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-19-53_768_6222369111291261943/-ext-10006 File Output Operator compressed: false GlobalTableId: 0 @@ -161,7 +161,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-11 Conditional Operator @@ -170,7 +170,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-26-35_986_1783793979784635729/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-19-53_768_6222369111291261943/-ext-10002 Stage: Stage-1 Move Operator @@ -180,7 +180,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-8 Stats-Aggr Operator @@ -188,7 +188,7 @@ Stage: Stage-9 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-26-35_986_1783793979784635729/-ext-10007 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-19-53_768_6222369111291261943/-ext-10007 File Output Operator compressed: false GlobalTableId: 0 @@ -196,7 +196,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-15 Conditional Operator @@ -205,7 +205,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-26-35_986_1783793979784635729/-ext-10004 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-19-53_768_6222369111291261943/-ext-10004 Stage: Stage-2 Move Operator @@ -218,7 +218,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest3 + name: default.dest3 Stage: Stage-12 Stats-Aggr Operator @@ -226,7 +226,7 @@ Stage: Stage-13 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-26-35_986_1783793979784635729/-ext-10008 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-19-53_768_6222369111291261943/-ext-10008 File Output Operator compressed: false GlobalTableId: 0 @@ -234,7 +234,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest3 + name: default.dest3 PREHOOK: query: FROM src @@ -263,11 +263,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-26-45_582_5567777802564652649/-mr-10000 +PREHOOK: Output: file:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-20-00_240_8831094214954009613/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-26-45_582_5567777802564652649/-mr-10000 +POSTHOOK: Output: file:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-20-00_240_8831094214954009613/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -360,11 +360,11 @@ PREHOOK: query: SELECT dest2.* FROM dest2 PREHOOK: type: QUERY PREHOOK: Input: default@dest2 -PREHOOK: Output: file:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-26-45_917_708064163493602688/-mr-10000 +PREHOOK: Output: file:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-20-00_535_8528635009771740272/-mr-10000 POSTHOOK: query: SELECT dest2.* FROM dest2 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest2 -POSTHOOK: Output: file:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-26-45_917_708064163493602688/-mr-10000 +POSTHOOK: Output: file:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-20-00_535_8528635009771740272/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -478,11 +478,11 @@ PREHOOK: query: SELECT dest3.* FROM dest3 PREHOOK: type: QUERY PREHOOK: Input: default@dest3@ds=2008-04-08/hr=12 -PREHOOK: Output: file:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-26-46_261_4933108995689043596/-mr-10000 +PREHOOK: Output: file:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-20-00_831_6383501388073473391/-mr-10000 POSTHOOK: query: SELECT dest3.* FROM dest3 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest3@ds=2008-04-08/hr=12 -POSTHOOK: Output: file:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-26-46_261_4933108995689043596/-mr-10000 +POSTHOOK: Output: file:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-20-00_831_6383501388073473391/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/join30.q.out =================================================================== --- ql/src/test/results/clientpositive/join30.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join30.q.out (working copy) @@ -72,7 +72,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/liyintang/hive_2010-11-04_12-10-56_018_3645639935399412130/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-30-47_061_988769310100458614/-mr-10002 Select Operator expressions: expr: _col0 @@ -135,7 +135,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Stage: Stage-0 Move Operator @@ -145,7 +145,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Stage: Stage-3 Stats-Aggr Operator @@ -168,11 +168,11 @@ PREHOOK: query: select * from dest_j1 x order by x.key PREHOOK: type: QUERY PREHOOK: Input: default@dest_j1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_12-11-08_869_436561712847189276/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-30-57_310_4854521338100595649/-mr-10000 POSTHOOK: query: select * from dest_j1 x order by x.key POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_j1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_12-11-08_869_436561712847189276/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-30-57_310_4854521338100595649/-mr-10000 POSTHOOK: Lineage: dest_j1.cnt EXPRESSION [(src1)x.null, (src)y.null, ] POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src1)x.FieldSchema(name:key, type:string, comment:default), ] 66 1 Index: ql/src/test/results/clientpositive/input35.q.out =================================================================== --- ql/src/test/results/clientpositive/input35.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input35.q.out (working copy) @@ -72,7 +72,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Conditional Operator @@ -81,7 +81,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-29-54_475_987682472980858307/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-22-27_827_854345326623340743/-ext-10000 Stage: Stage-0 Move Operator @@ -91,7 +91,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -99,7 +99,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-29-54_475_987682472980858307/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-22-27_827_854345326623340743/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -107,7 +107,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM ( @@ -135,11 +135,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-30-01_261_3930011600895950760/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-22-32_723_2353307922685952360/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-30-01_261_3930011600895950760/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-22-32_723_2353307922685952360/-mr-10000 POSTHOOK: Lineage: dest1.key SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] 238 val_238 Index: ql/src/test/results/clientpositive/auto_join6.q.out =================================================================== --- ql/src/test/results/clientpositive/auto_join6.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/auto_join6.q.out (working copy) @@ -158,7 +158,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -168,7 +168,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -213,11 +213,11 @@ PREHOOK: query: SELECT sum(hash(dest1.c1,dest1.c2,dest1.c3,dest1.c4)) FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-15_16-53-45_805_5842090138567718146/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-31-16_486_2301218339919037462/-mr-10000 POSTHOOK: query: SELECT sum(hash(dest1.c1,dest1.c2,dest1.c3,dest1.c4)) FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-15_16-53-45_805_5842090138567718146/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-31-16_486_2301218339919037462/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c2 SIMPLE [(src)src1.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c3 EXPRESSION [(src)src2.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/input3_limit.q.out =================================================================== --- ql/src/test/results/clientpositive/input3_limit.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input3_limit.q.out (working copy) @@ -83,7 +83,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-30-52_861_1975779672781338215/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-23-13_562_2357414769999383122/-mr-10002 Reduce Output Operator sort order: tag: -1 @@ -102,7 +102,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: t2 + name: default.t2 Stage: Stage-0 Move Operator @@ -112,7 +112,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: t2 + name: default.t2 Stage: Stage-3 Stats-Aggr Operator @@ -131,11 +131,11 @@ PREHOOK: query: SELECT * FROM T2 SORT BY key, value PREHOOK: type: QUERY PREHOOK: Input: default@t2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-31-03_039_904488643585504415/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-23-22_757_6747878237437713454/-mr-10000 POSTHOOK: query: SELECT * FROM T2 SORT BY key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@t2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-31-03_039_904488643585504415/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-23-22_757_6747878237437713454/-mr-10000 POSTHOOK: Lineage: t2.key SIMPLE [(t1)t1.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: t2.value SIMPLE [(t1)t1.FieldSchema(name:value, type:string, comment:null), ] 0 val_0 Index: ql/src/test/results/clientpositive/mapreduce2.q.out =================================================================== --- ql/src/test/results/clientpositive/mapreduce2.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/mapreduce2.q.out (working copy) @@ -85,7 +85,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -95,7 +95,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -124,11 +124,11 @@ PREHOOK: query: SELECT * FROM (SELECT dest1.* FROM dest1 DISTRIBUTE BY key SORT BY key, ten, one, value) T PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-03-06_482_1517464312238949080/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-05-13_082_6135540461987362742/-mr-10000 POSTHOOK: query: SELECT * FROM (SELECT dest1.* FROM dest1 DISTRIBUTE BY key SORT BY key, ten, one, value) T POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-03-06_482_1517464312238949080/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-05-13_082_6135540461987362742/-mr-10000 POSTHOOK: Lineage: dest1.key SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.one SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.ten SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/bucket3.q.out =================================================================== --- ql/src/test/results/clientpositive/bucket3.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/bucket3.q.out (working copy) @@ -47,9 +47,9 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/src [src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [src] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -60,12 +60,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/hive-trunk/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288316181 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -76,15 +76,15 @@ 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/hive-trunk/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1288316181 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src + name: default.src + name: default.src Reduce Operator Tree: Extract Select Operator @@ -97,10 +97,10 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-28_18-37-39_138_2443248041932414937/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-45_447_7108790262583802076/-ext-10000 NumFilesPerFileSink: 2 Static Partition Specification: ds=1/ - Stats Publishing Key Prefix: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-28_18-37-39_138_2443248041932414937/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-45_447_7108790262583802076/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -111,15 +111,15 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/bucket3_1 - name bucket3_1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucket3_1 + name default.bucket3_1 partition_columns ds serialization.ddl struct bucket3_1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288316259 + transient_lastDdlTime 1297244865 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucket3_1 + name: default.bucket3_1 TotalFiles: 2 GatherStats: true MultiFileSpray: true @@ -130,7 +130,7 @@ partition: ds 1 replace: true - source: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-28_18-37-39_138_2443248041932414937/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-45_447_7108790262583802076/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -141,20 +141,20 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/bucket3_1 - name bucket3_1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucket3_1 + name default.bucket3_1 partition_columns ds serialization.ddl struct bucket3_1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288316259 + transient_lastDdlTime 1297244865 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucket3_1 - tmp directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-28_18-37-39_138_2443248041932414937/-ext-10001 + name: default.bucket3_1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-45_447_7108790262583802076/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-28_18-37-39_138_2443248041932414937/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-45_447_7108790262583802076/-ext-10000/ PREHOOK: query: insert overwrite table bucket3_1 partition (ds='1') @@ -258,11 +258,11 @@ PREHOOK: query: select * from bucket3_1 tablesample (bucket 1 out of 2) s where ds = '1' order by key PREHOOK: type: QUERY PREHOOK: Input: default@bucket3_1@ds=1 -PREHOOK: Output: file:/tmp/sdong/hive_2010-10-28_18-37-48_638_4161477026349692038/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-47-55_712_1528958604063353788/-mr-10000 POSTHOOK: query: select * from bucket3_1 tablesample (bucket 1 out of 2) s where ds = '1' order by key POSTHOOK: type: QUERY POSTHOOK: Input: default@bucket3_1@ds=1 -POSTHOOK: Output: file:/tmp/sdong/hive_2010-10-28_18-37-48_638_4161477026349692038/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-47-55_712_1528958604063353788/-mr-10000 POSTHOOK: Lineage: bucket3_1 PARTITION(ds=1).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: bucket3_1 PARTITION(ds=1).value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: bucket3_1 PARTITION(ds=2).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/merge2.q.out =================================================================== --- ql/src/test/results/clientpositive/merge2.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/merge2.q.out (working copy) @@ -86,7 +86,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: test1 + name: default.test1 Stage: Stage-5 Conditional Operator @@ -95,7 +95,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-04-41_587_1479117521763139913/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-06-20_775_405848520094440952/-ext-10000 Stage: Stage-0 Move Operator @@ -105,7 +105,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: test1 + name: default.test1 Stage: Stage-2 Stats-Aggr Operator @@ -113,7 +113,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-04-41_587_1479117521763139913/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-06-20_775_405848520094440952/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -121,7 +121,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: test1 + name: default.test1 PREHOOK: query: insert overwrite table test1 @@ -139,11 +139,11 @@ PREHOOK: query: select * from test1 PREHOOK: type: QUERY PREHOOK: Input: default@test1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-04-48_974_2460598230030561192/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-06-25_821_3445514905271161822/-mr-10000 POSTHOOK: query: select * from test1 POSTHOOK: type: QUERY POSTHOOK: Input: default@test1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-04-48_974_2460598230030561192/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-06-25_821_3445514905271161822/-mr-10000 POSTHOOK: Lineage: test1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: test1.val EXPRESSION [(src)src.null, ] 0 3 @@ -547,7 +547,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: test1 + name: default.test1 Stage: Stage-5 Conditional Operator @@ -556,7 +556,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-05-02_998_781535564297659708/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-06-35_818_1737495008229937683/-ext-10000 Stage: Stage-0 Move Operator @@ -566,7 +566,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: test1 + name: default.test1 Stage: Stage-2 Stats-Aggr Operator @@ -574,7 +574,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-05-02_998_781535564297659708/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-06-35_818_1737495008229937683/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -582,7 +582,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: test1 + name: default.test1 PREHOOK: query: insert overwrite table test1 select key from test_src @@ -645,7 +645,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: test1 + name: default.test1 Stage: Stage-5 Conditional Operator @@ -654,7 +654,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-05-13_368_8155747604457943596/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-06-44_957_3580732115959502581/-ext-10000 Stage: Stage-0 Move Operator @@ -664,7 +664,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: test1 + name: default.test1 Stage: Stage-2 Stats-Aggr Operator @@ -672,7 +672,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-05-13_368_8155747604457943596/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-06-44_957_3580732115959502581/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -680,7 +680,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: test1 + name: default.test1 PREHOOK: query: insert overwrite table test1 select key from test_src Index: ql/src/test/results/clientpositive/input_lazyserde.q.out =================================================================== --- ql/src/test/results/clientpositive/input_lazyserde.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input_lazyserde.q.out (working copy) @@ -77,7 +77,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -87,7 +87,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -111,11 +111,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 DISTRIBUTE BY 1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-33-25_073_8539790003663419019/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-25-22_084_5476795750960887859/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 DISTRIBUTE BY 1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-33-25_073_8539790003663419019/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-25-22_084_5476795750960887859/-mr-10000 POSTHOOK: Lineage: dest1.a SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lint, type:array, comment:from deserializer), ] POSTHOOK: Lineage: dest1.b SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lstring, type:array, comment:from deserializer), ] POSTHOOK: Lineage: dest1.c SIMPLE [(src_thrift)src_thrift.FieldSchema(name:mstringstring, type:map, comment:from deserializer), ] @@ -135,11 +135,11 @@ PREHOOK: query: SELECT dest1.a[0], dest1.b[0], dest1.c['key2'], dest1.d, dest1.e FROM dest1 DISTRIBUTE BY 1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-33-28_671_2104052666178146727/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-25-25_553_6833142501167262531/-mr-10000 POSTHOOK: query: SELECT dest1.a[0], dest1.b[0], dest1.c['key2'], dest1.d, dest1.e FROM dest1 DISTRIBUTE BY 1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-33-28_671_2104052666178146727/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-25-25_553_6833142501167262531/-mr-10000 POSTHOOK: Lineage: dest1.a SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lint, type:array, comment:from deserializer), ] POSTHOOK: Lineage: dest1.b SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lstring, type:array, comment:from deserializer), ] POSTHOOK: Lineage: dest1.c SIMPLE [(src_thrift)src_thrift.FieldSchema(name:mstringstring, type:map, comment:from deserializer), ] @@ -196,11 +196,11 @@ PREHOOK: query: SELECT * from dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-33-39_265_3585210195406224800/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-25-33_899_141160943367310908/-mr-10000 POSTHOOK: query: SELECT * from dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-33-39_265_3585210195406224800/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-25-33_899_141160943367310908/-mr-10000 POSTHOOK: Lineage: dest1.a SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lint, type:array, comment:from deserializer), ] POSTHOOK: Lineage: dest1.a SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lint, type:array, comment:from deserializer), ] POSTHOOK: Lineage: dest1.b SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lstring, type:array, comment:from deserializer), ] @@ -261,11 +261,11 @@ PREHOOK: query: SELECT * from dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-33-46_712_2519354046309726594/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-25-39_749_3350879334876698251/-mr-10000 POSTHOOK: query: SELECT * from dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-33-46_712_2519354046309726594/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-25-39_749_3350879334876698251/-mr-10000 POSTHOOK: Lineage: dest1.a SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lint, type:array, comment:from deserializer), ] POSTHOOK: Lineage: dest1.a SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lint, type:array, comment:from deserializer), ] POSTHOOK: Lineage: dest1.a SIMPLE [(src_thrift)src_thrift.FieldSchema(name:mstringstring, type:map, comment:from deserializer), ] Index: ql/src/test/results/clientpositive/groupby_ppr_multi_distinct.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby_ppr_multi_distinct.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby_ppr_multi_distinct.q.out (working copy) @@ -60,10 +60,10 @@ tag: -1 Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [src] - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [src] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -77,13 +77,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -94,17 +94,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -118,13 +118,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -135,16 +135,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Group By Operator aggregations: @@ -187,9 +187,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-23-18_154_6760878637642752119/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-14-45_821_990506159331573173/-ext-10000 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-23-18_154_6760878637642752119/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-14-45_821_990506159331573173/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -199,14 +199,14 @@ columns.types string:int:string:int:int file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { string key, i32 c1, string c2, i32 c3, i32 c4} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288390998 + transient_lastDdlTime 1297246485 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -215,7 +215,7 @@ Move Operator tables: replace: true - source: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-23-18_154_6760878637642752119/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-14-45_821_990506159331573173/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -225,19 +225,19 @@ columns.types string:int:string:int:int file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { string key, i32 c1, string c2, i32 c3, i32 c4} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288390998 + transient_lastDdlTime 1297246485 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - tmp directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-23-18_154_6760878637642752119/-ext-10001 + name: default.dest1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-14-45_821_990506159331573173/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-23-18_154_6760878637642752119/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-14-45_821_990506159331573173/-ext-10000/ PREHOOK: query: FROM srcpart src @@ -266,11 +266,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/sdong/hive_2010-10-29_15-23-24_534_5484660630013703742/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-14-55_206_2917987121767458663/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/sdong/hive_2010-10-29_15-23-24_534_5484660630013703742/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-14-55_206_2917987121767458663/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(srcpart)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c2 EXPRESSION [(srcpart)src.FieldSchema(name:key, type:string, comment:default), (srcpart)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c3 EXPRESSION [(srcpart)src.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/join4.q.out =================================================================== --- ql/src/test/results/clientpositive/join4.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join4.q.out (working copy) @@ -158,7 +158,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -168,7 +168,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -213,11 +213,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-42-40_850_7324476183424301778/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-33-24_212_2224827145871935875/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-42-40_850_7324476183424301778/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-33-24_212_2224827145871935875/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c2 SIMPLE [(src)src1.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c3 EXPRESSION [(src)src2.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/input_dynamicserde.q.out =================================================================== --- ql/src/test/results/clientpositive/input_dynamicserde.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input_dynamicserde.q.out (working copy) @@ -61,7 +61,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Conditional Operator @@ -70,7 +70,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-33-07_213_5098972181857672126/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-08_133_2145335689429807787/-ext-10000 Stage: Stage-0 Move Operator @@ -80,7 +80,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -88,7 +88,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-33-07_213_5098972181857672126/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-08_133_2145335689429807787/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -96,7 +96,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM src_thrift @@ -117,11 +117,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-33-13_547_5402297268276891777/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-25-13_046_5353887392634729800/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-33-13_547_5402297268276891777/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-25-13_046_5353887392634729800/-mr-10000 POSTHOOK: Lineage: dest1.a SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lint, type:array, comment:from deserializer), ] POSTHOOK: Lineage: dest1.b SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lstring, type:array, comment:from deserializer), ] POSTHOOK: Lineage: dest1.c SIMPLE [(src_thrift)src_thrift.FieldSchema(name:mstringstring, type:map, comment:from deserializer), ] @@ -141,11 +141,11 @@ PREHOOK: query: SELECT dest1.a[0], dest1.b[0], dest1.c['key2'], dest1.d, dest1.e FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-33-13_900_7937348779609118653/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-25-13_358_5208892454061295199/-mr-10000 POSTHOOK: query: SELECT dest1.a[0], dest1.b[0], dest1.c['key2'], dest1.d, dest1.e FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-33-13_900_7937348779609118653/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-25-13_358_5208892454061295199/-mr-10000 POSTHOOK: Lineage: dest1.a SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lint, type:array, comment:from deserializer), ] POSTHOOK: Lineage: dest1.b SIMPLE [(src_thrift)src_thrift.FieldSchema(name:lstring, type:array, comment:from deserializer), ] POSTHOOK: Lineage: dest1.c SIMPLE [(src_thrift)src_thrift.FieldSchema(name:mstringstring, type:map, comment:from deserializer), ] Index: ql/src/test/results/clientpositive/input9.q.out =================================================================== --- ql/src/test/results/clientpositive/input9.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input9.q.out (working copy) @@ -58,7 +58,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Conditional Operator @@ -67,7 +67,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-32-44_899_4523655138526447161/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-24-49_634_5190294801769087496/-ext-10000 Stage: Stage-0 Move Operator @@ -77,7 +77,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -85,7 +85,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-32-44_899_4523655138526447161/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-24-49_634_5190294801769087496/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -93,7 +93,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM src1 @@ -111,10 +111,10 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-32-50_790_4065446315687033253/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-24-54_520_7820670949691390959/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-32-50_790_4065446315687033253/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-24-54_520_7820670949691390959/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src1)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SIMPLE [] Index: ql/src/test/results/clientpositive/union17.q.out =================================================================== --- ql/src/test/results/clientpositive/union17.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/union17.q.out (working copy) @@ -84,7 +84,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_18-18-09_951_4321959446546233090/-mr-10004 + file:/tmp/sdong/hive_2011-02-09_04-16-01_147_7751210766354168667/-mr-10004 Union Reduce Output Operator key expressions: @@ -100,7 +100,7 @@ type: string expr: _col1 type: string - file:/tmp/nzhang/hive_2010-09-14_18-18-09_951_4321959446546233090/-mr-10007 + file:/tmp/sdong/hive_2011-02-09_04-16-01_147_7751210766354168667/-mr-10007 Union Reduce Output Operator key expressions: @@ -154,7 +154,7 @@ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_18-18-09_951_4321959446546233090/-mr-10005 + file:/tmp/sdong/hive_2011-02-09_04-16-01_147_7751210766354168667/-mr-10005 Reduce Output Operator key expressions: expr: _col0 @@ -191,7 +191,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -201,7 +201,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Stats-Aggr Operator @@ -209,7 +209,7 @@ Stage: Stage-6 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_18-18-09_951_4321959446546233090/-mr-10006 + file:/tmp/sdong/hive_2011-02-09_04-16-01_147_7751210766354168667/-mr-10006 Reduce Output Operator key expressions: expr: _col0 @@ -254,7 +254,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-1 Move Operator @@ -264,7 +264,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-7 Stats-Aggr Operator @@ -316,11 +316,11 @@ PREHOOK: query: SELECT DEST1.* FROM DEST1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-18-35_533_8334042407221913491/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-16-19_759_4752673253305921829/-mr-10000 POSTHOOK: query: SELECT DEST1.* FROM DEST1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-18-35_533_8334042407221913491/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-16-19_759_4752673253305921829/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)s2.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)s1.null, (src)s2.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)s2.FieldSchema(name:key, type:string, comment:default), ] @@ -639,11 +639,11 @@ PREHOOK: query: SELECT DEST2.* FROM DEST2 PREHOOK: type: QUERY PREHOOK: Input: default@dest2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-18-35_933_8454563848719230923/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-16-20_079_7821833381093879833/-mr-10000 POSTHOOK: query: SELECT DEST2.* FROM DEST2 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-18-35_933_8454563848719230923/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-16-20_079_7821833381093879833/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)s2.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)s1.null, (src)s2.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)s2.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/input30.q.out =================================================================== --- ql/src/test/results/clientpositive/input30.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input30.q.out (working copy) @@ -72,7 +72,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tst_dest30 + name: default.tst_dest30 Stage: Stage-0 Move Operator @@ -82,7 +82,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tst_dest30 + name: default.tst_dest30 Stage: Stage-2 Stats-Aggr Operator @@ -102,10 +102,10 @@ PREHOOK: query: select * from tst_dest30 PREHOOK: type: QUERY PREHOOK: Input: default@tst_dest30 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-29-17_894_4302083977573140725/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-21-58_857_8902444170873765923/-mr-10000 POSTHOOK: query: select * from tst_dest30 POSTHOOK: type: QUERY POSTHOOK: Input: default@tst_dest30 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-29-17_894_4302083977573140725/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-21-58_857_8902444170873765923/-mr-10000 POSTHOOK: Lineage: tst_dest30.a EXPRESSION [(src)src.null, ] 18 Index: ql/src/test/results/clientpositive/database.q.out =================================================================== --- ql/src/test/results/clientpositive/database.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/database.q.out (working copy) @@ -123,18 +123,6 @@ POSTHOOK: query: SHOW TABLES POSTHOOK: type: SHOWTABLES test_table -PREHOOK: query: SHOW TABLES FROM default -PREHOOK: type: SHOWTABLES -POSTHOOK: query: SHOW TABLES FROM default -POSTHOOK: type: SHOWTABLES -src -src1 -src_json -src_sequencefile -src_thrift -srcbucket -srcbucket2 -srcpart PREHOOK: query: -- DESCRIBE table in non-default DB DESCRIBE test_table PREHOOK: type: DESCTABLE @@ -150,7 +138,7 @@ POSTHOOK: type: DESCTABLE col1 string -Detailed Table Information Table(tableName:test_table, dbName:test_db, owner:natty, createTime:1295497053, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:col1, type:string, comment:null)], location:pfile:/home/natty/apache/hive/build/ql/test/data/warehouse/test_db.db/test_table, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[], parameters:{transient_lastDdlTime=1295497053}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:test_table, dbName:test_db, owner:sdong, createTime:1297298647, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:col1, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/test_db.db/test_table, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[], parameters:{transient_lastDdlTime=1297298647}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) PREHOOK: query: -- CREATE LIKE in non-default DB CREATE TABLE test_table_like LIKE test_table PREHOOK: type: CREATETABLE @@ -170,22 +158,24 @@ POSTHOOK: type: DESCTABLE col1 string -Detailed Table Information Table(tableName:test_table_like, dbName:test_db, owner:natty, createTime:1295497053, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:col1, type:string, comment:null)], location:pfile:/home/natty/apache/hive/build/ql/test/data/warehouse/test_db.db/test_table_like, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[], parameters:{transient_lastDdlTime=1295497053}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:test_table_like, dbName:test_db, owner:sdong, createTime:1297298647, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:col1, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/test_db.db/test_table_like, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[], parameters:{transient_lastDdlTime=1297298647}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) PREHOOK: query: -- LOAD and SELECT -LOAD DATA LOCAL INPATH '../data/files/test.dat' OVERWRITE INTO TABLE test_table +LOAD DATA LOCAL INPATH '../data/files/test.dat' +OVERWRITE INTO TABLE test_table PREHOOK: type: LOAD POSTHOOK: query: -- LOAD and SELECT -LOAD DATA LOCAL INPATH '../data/files/test.dat' OVERWRITE INTO TABLE test_table +LOAD DATA LOCAL INPATH '../data/files/test.dat' +OVERWRITE INTO TABLE test_table POSTHOOK: type: LOAD POSTHOOK: Output: test_db@test_table PREHOOK: query: SELECT * FROM test_table PREHOOK: type: QUERY PREHOOK: Input: test_db@test_table -PREHOOK: Output: file:/tmp/natty/hive_2011-01-19_20-17-33_910_8849955411961165388/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-07_907_2220290854576269936/-mr-10000 POSTHOOK: query: SELECT * FROM test_table POSTHOOK: type: QUERY POSTHOOK: Input: test_db@test_table -POSTHOOK: Output: file:/tmp/natty/hive_2011-01-19_20-17-33_910_8849955411961165388/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-07_907_2220290854576269936/-mr-10000 1 2 3 @@ -221,11 +211,11 @@ PREHOOK: query: SELECT * FROM test_table PREHOOK: type: QUERY PREHOOK: Input: test_db@test_table -PREHOOK: Output: file:/tmp/natty/hive_2011-01-19_20-17-38_129_5112535169216391173/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-09_675_3749588003523508410/-mr-10000 POSTHOOK: query: SELECT * FROM test_table POSTHOOK: type: QUERY POSTHOOK: Input: test_db@test_table -POSTHOOK: Output: file:/tmp/natty/hive_2011-01-19_20-17-38_129_5112535169216391173/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-09_675_3749588003523508410/-mr-10000 PREHOOK: query: -- CREATE table that already exists in DEFAULT USE test_db PREHOOK: type: SWITCHDATABASE @@ -244,21 +234,14 @@ src test_table test_table_like -PREHOOK: query: SHOW TABLES FROM test_db -PREHOOK: type: SHOWTABLES -POSTHOOK: query: SHOW TABLES FROM test_db -POSTHOOK: type: SHOWTABLES -src -test_table -test_table_like PREHOOK: query: SELECT * FROM src LIMIT 10 PREHOOK: type: QUERY PREHOOK: Input: test_db@src -PREHOOK: Output: file:/tmp/natty/hive_2011-01-19_20-17-38_467_8075768514275581965/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-09_940_1455309242143303234/-mr-10000 POSTHOOK: query: SELECT * FROM src LIMIT 10 POSTHOOK: type: QUERY POSTHOOK: Input: test_db@src -POSTHOOK: Output: file:/tmp/natty/hive_2011-01-19_20-17-38_467_8075768514275581965/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-09_940_1455309242143303234/-mr-10000 PREHOOK: query: USE default PREHOOK: type: SWITCHDATABASE POSTHOOK: query: USE default @@ -266,11 +249,11 @@ PREHOOK: query: SELECT * FROM src LIMIT 10 PREHOOK: type: QUERY PREHOOK: Input: default@src -PREHOOK: Output: file:/tmp/natty/hive_2011-01-19_20-17-38_757_329306949772765592/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-10_069_2353230500727487936/-mr-10000 POSTHOOK: query: SELECT * FROM src LIMIT 10 POSTHOOK: type: QUERY POSTHOOK: Input: default@src -POSTHOOK: Output: file:/tmp/natty/hive_2011-01-19_20-17-38_757_329306949772765592/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-10_069_2353230500727487936/-mr-10000 238 val_238 86 val_86 311 val_311 @@ -328,3 +311,886 @@ POSTHOOK: query: SHOW DATABASES POSTHOOK: type: SHOWDATABASES default +PREHOOK: query: -- +-- Canonical Name Tests +-- + +CREATE DATABASE db1 +PREHOOK: type: CREATEDATABASE +POSTHOOK: query: -- +-- Canonical Name Tests +-- + +CREATE DATABASE db1 +POSTHOOK: type: CREATEDATABASE +PREHOOK: query: CREATE DATABASE db2 +PREHOOK: type: CREATEDATABASE +POSTHOOK: query: CREATE DATABASE db2 +POSTHOOK: type: CREATEDATABASE +PREHOOK: query: -- CREATE foreign table +CREATE TABLE db1.src(key STRING, value STRING) +STORED AS TEXTFILE +PREHOOK: type: CREATETABLE +POSTHOOK: query: -- CREATE foreign table +CREATE TABLE db1.src(key STRING, value STRING) +STORED AS TEXTFILE +POSTHOOK: type: CREATETABLE +POSTHOOK: Output: db1@src +PREHOOK: query: -- LOAD into foreign table +LOAD DATA LOCAL INPATH '../data/files/kv1.txt' +OVERWRITE INTO TABLE db1.src +PREHOOK: type: LOAD +POSTHOOK: query: -- LOAD into foreign table +LOAD DATA LOCAL INPATH '../data/files/kv1.txt' +OVERWRITE INTO TABLE db1.src +POSTHOOK: type: LOAD +POSTHOOK: Output: db1@src +PREHOOK: query: -- SELECT from foreign table +SELECT * FROM db1.src +PREHOOK: type: QUERY +PREHOOK: Input: db1@src +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-11_275_6905084904466384529/-mr-10000 +POSTHOOK: query: -- SELECT from foreign table +SELECT * FROM db1.src +POSTHOOK: type: QUERY +POSTHOOK: Input: db1@src +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-11_275_6905084904466384529/-mr-10000 +238 val_238 +86 val_86 +311 val_311 +27 val_27 +165 val_165 +409 val_409 +255 val_255 +278 val_278 +98 val_98 +484 val_484 +265 val_265 +193 val_193 +401 val_401 +150 val_150 +273 val_273 +224 val_224 +369 val_369 +66 val_66 +128 val_128 +213 val_213 +146 val_146 +406 val_406 +429 val_429 +374 val_374 +152 val_152 +469 val_469 +145 val_145 +495 val_495 +37 val_37 +327 val_327 +281 val_281 +277 val_277 +209 val_209 +15 val_15 +82 val_82 +403 val_403 +166 val_166 +417 val_417 +430 val_430 +252 val_252 +292 val_292 +219 val_219 +287 val_287 +153 val_153 +193 val_193 +338 val_338 +446 val_446 +459 val_459 +394 val_394 +237 val_237 +482 val_482 +174 val_174 +413 val_413 +494 val_494 +207 val_207 +199 val_199 +466 val_466 +208 val_208 +174 val_174 +399 val_399 +396 val_396 +247 val_247 +417 val_417 +489 val_489 +162 val_162 +377 val_377 +397 val_397 +309 val_309 +365 val_365 +266 val_266 +439 val_439 +342 val_342 +367 val_367 +325 val_325 +167 val_167 +195 val_195 +475 val_475 +17 val_17 +113 val_113 +155 val_155 +203 val_203 +339 val_339 +0 val_0 +455 val_455 +128 val_128 +311 val_311 +316 val_316 +57 val_57 +302 val_302 +205 val_205 +149 val_149 +438 val_438 +345 val_345 +129 val_129 +170 val_170 +20 val_20 +489 val_489 +157 val_157 +378 val_378 +221 val_221 +92 val_92 +111 val_111 +47 val_47 +72 val_72 +4 val_4 +280 val_280 +35 val_35 +427 val_427 +277 val_277 +208 val_208 +356 val_356 +399 val_399 +169 val_169 +382 val_382 +498 val_498 +125 val_125 +386 val_386 +437 val_437 +469 val_469 +192 val_192 +286 val_286 +187 val_187 +176 val_176 +54 val_54 +459 val_459 +51 val_51 +138 val_138 +103 val_103 +239 val_239 +213 val_213 +216 val_216 +430 val_430 +278 val_278 +176 val_176 +289 val_289 +221 val_221 +65 val_65 +318 val_318 +332 val_332 +311 val_311 +275 val_275 +137 val_137 +241 val_241 +83 val_83 +333 val_333 +180 val_180 +284 val_284 +12 val_12 +230 val_230 +181 val_181 +67 val_67 +260 val_260 +404 val_404 +384 val_384 +489 val_489 +353 val_353 +373 val_373 +272 val_272 +138 val_138 +217 val_217 +84 val_84 +348 val_348 +466 val_466 +58 val_58 +8 val_8 +411 val_411 +230 val_230 +208 val_208 +348 val_348 +24 val_24 +463 val_463 +431 val_431 +179 val_179 +172 val_172 +42 val_42 +129 val_129 +158 val_158 +119 val_119 +496 val_496 +0 val_0 +322 val_322 +197 val_197 +468 val_468 +393 val_393 +454 val_454 +100 val_100 +298 val_298 +199 val_199 +191 val_191 +418 val_418 +96 val_96 +26 val_26 +165 val_165 +327 val_327 +230 val_230 +205 val_205 +120 val_120 +131 val_131 +51 val_51 +404 val_404 +43 val_43 +436 val_436 +156 val_156 +469 val_469 +468 val_468 +308 val_308 +95 val_95 +196 val_196 +288 val_288 +481 val_481 +457 val_457 +98 val_98 +282 val_282 +197 val_197 +187 val_187 +318 val_318 +318 val_318 +409 val_409 +470 val_470 +137 val_137 +369 val_369 +316 val_316 +169 val_169 +413 val_413 +85 val_85 +77 val_77 +0 val_0 +490 val_490 +87 val_87 +364 val_364 +179 val_179 +118 val_118 +134 val_134 +395 val_395 +282 val_282 +138 val_138 +238 val_238 +419 val_419 +15 val_15 +118 val_118 +72 val_72 +90 val_90 +307 val_307 +19 val_19 +435 val_435 +10 val_10 +277 val_277 +273 val_273 +306 val_306 +224 val_224 +309 val_309 +389 val_389 +327 val_327 +242 val_242 +369 val_369 +392 val_392 +272 val_272 +331 val_331 +401 val_401 +242 val_242 +452 val_452 +177 val_177 +226 val_226 +5 val_5 +497 val_497 +402 val_402 +396 val_396 +317 val_317 +395 val_395 +58 val_58 +35 val_35 +336 val_336 +95 val_95 +11 val_11 +168 val_168 +34 val_34 +229 val_229 +233 val_233 +143 val_143 +472 val_472 +322 val_322 +498 val_498 +160 val_160 +195 val_195 +42 val_42 +321 val_321 +430 val_430 +119 val_119 +489 val_489 +458 val_458 +78 val_78 +76 val_76 +41 val_41 +223 val_223 +492 val_492 +149 val_149 +449 val_449 +218 val_218 +228 val_228 +138 val_138 +453 val_453 +30 val_30 +209 val_209 +64 val_64 +468 val_468 +76 val_76 +74 val_74 +342 val_342 +69 val_69 +230 val_230 +33 val_33 +368 val_368 +103 val_103 +296 val_296 +113 val_113 +216 val_216 +367 val_367 +344 val_344 +167 val_167 +274 val_274 +219 val_219 +239 val_239 +485 val_485 +116 val_116 +223 val_223 +256 val_256 +263 val_263 +70 val_70 +487 val_487 +480 val_480 +401 val_401 +288 val_288 +191 val_191 +5 val_5 +244 val_244 +438 val_438 +128 val_128 +467 val_467 +432 val_432 +202 val_202 +316 val_316 +229 val_229 +469 val_469 +463 val_463 +280 val_280 +2 val_2 +35 val_35 +283 val_283 +331 val_331 +235 val_235 +80 val_80 +44 val_44 +193 val_193 +321 val_321 +335 val_335 +104 val_104 +466 val_466 +366 val_366 +175 val_175 +403 val_403 +483 val_483 +53 val_53 +105 val_105 +257 val_257 +406 val_406 +409 val_409 +190 val_190 +406 val_406 +401 val_401 +114 val_114 +258 val_258 +90 val_90 +203 val_203 +262 val_262 +348 val_348 +424 val_424 +12 val_12 +396 val_396 +201 val_201 +217 val_217 +164 val_164 +431 val_431 +454 val_454 +478 val_478 +298 val_298 +125 val_125 +431 val_431 +164 val_164 +424 val_424 +187 val_187 +382 val_382 +5 val_5 +70 val_70 +397 val_397 +480 val_480 +291 val_291 +24 val_24 +351 val_351 +255 val_255 +104 val_104 +70 val_70 +163 val_163 +438 val_438 +119 val_119 +414 val_414 +200 val_200 +491 val_491 +237 val_237 +439 val_439 +360 val_360 +248 val_248 +479 val_479 +305 val_305 +417 val_417 +199 val_199 +444 val_444 +120 val_120 +429 val_429 +169 val_169 +443 val_443 +323 val_323 +325 val_325 +277 val_277 +230 val_230 +478 val_478 +178 val_178 +468 val_468 +310 val_310 +317 val_317 +333 val_333 +493 val_493 +460 val_460 +207 val_207 +249 val_249 +265 val_265 +480 val_480 +83 val_83 +136 val_136 +353 val_353 +172 val_172 +214 val_214 +462 val_462 +233 val_233 +406 val_406 +133 val_133 +175 val_175 +189 val_189 +454 val_454 +375 val_375 +401 val_401 +421 val_421 +407 val_407 +384 val_384 +256 val_256 +26 val_26 +134 val_134 +67 val_67 +384 val_384 +379 val_379 +18 val_18 +462 val_462 +492 val_492 +100 val_100 +298 val_298 +9 val_9 +341 val_341 +498 val_498 +146 val_146 +458 val_458 +362 val_362 +186 val_186 +285 val_285 +348 val_348 +167 val_167 +18 val_18 +273 val_273 +183 val_183 +281 val_281 +344 val_344 +97 val_97 +469 val_469 +315 val_315 +84 val_84 +28 val_28 +37 val_37 +448 val_448 +152 val_152 +348 val_348 +307 val_307 +194 val_194 +414 val_414 +477 val_477 +222 val_222 +126 val_126 +90 val_90 +169 val_169 +403 val_403 +400 val_400 +200 val_200 +97 val_97 +PREHOOK: query: -- CREATE Partitioned foreign table +CREATE TABLE db1.srcpart(key STRING, value STRING) +PARTITIONED BY (ds STRING, hr STRING) +STORED AS TEXTFILE +PREHOOK: type: CREATETABLE +POSTHOOK: query: -- CREATE Partitioned foreign table +CREATE TABLE db1.srcpart(key STRING, value STRING) +PARTITIONED BY (ds STRING, hr STRING) +STORED AS TEXTFILE +POSTHOOK: type: CREATETABLE +POSTHOOK: Output: db1@srcpart +PREHOOK: query: -- LOAD data into Partitioned foreign table +LOAD DATA LOCAL INPATH '../data/files/kv1.txt' +OVERWRITE INTO TABLE db1.srcpart +PARTITION (ds='2008-04-08', hr='11') +PREHOOK: type: LOAD +POSTHOOK: query: -- LOAD data into Partitioned foreign table +LOAD DATA LOCAL INPATH '../data/files/kv1.txt' +OVERWRITE INTO TABLE db1.srcpart +PARTITION (ds='2008-04-08', hr='11') +POSTHOOK: type: LOAD +POSTHOOK: Output: db1@srcpart@ds=2008-04-08/hr=11 +PREHOOK: query: -- SELECT from Partitioned foreign table +SELECT key, value FROM db1.srcpart +WHERE key < 100 AND ds='2008-04-08' AND hr='11' +PREHOOK: type: QUERY +PREHOOK: Input: db1@srcpart@ds=2008-04-08/hr=11 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-12_003_1615672453765172185/-mr-10000 +POSTHOOK: query: -- SELECT from Partitioned foreign table +SELECT key, value FROM db1.srcpart +WHERE key < 100 AND ds='2008-04-08' AND hr='11' +POSTHOOK: type: QUERY +POSTHOOK: Input: db1@srcpart@ds=2008-04-08/hr=11 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-12_003_1615672453765172185/-mr-10000 +86 val_86 +27 val_27 +98 val_98 +66 val_66 +37 val_37 +15 val_15 +82 val_82 +17 val_17 +0 val_0 +57 val_57 +20 val_20 +92 val_92 +47 val_47 +72 val_72 +4 val_4 +35 val_35 +54 val_54 +51 val_51 +65 val_65 +83 val_83 +12 val_12 +67 val_67 +84 val_84 +58 val_58 +8 val_8 +24 val_24 +42 val_42 +0 val_0 +96 val_96 +26 val_26 +51 val_51 +43 val_43 +95 val_95 +98 val_98 +85 val_85 +77 val_77 +0 val_0 +87 val_87 +15 val_15 +72 val_72 +90 val_90 +19 val_19 +10 val_10 +5 val_5 +58 val_58 +35 val_35 +95 val_95 +11 val_11 +34 val_34 +42 val_42 +78 val_78 +76 val_76 +41 val_41 +30 val_30 +64 val_64 +76 val_76 +74 val_74 +69 val_69 +33 val_33 +70 val_70 +5 val_5 +2 val_2 +35 val_35 +80 val_80 +44 val_44 +53 val_53 +90 val_90 +12 val_12 +5 val_5 +70 val_70 +24 val_24 +70 val_70 +83 val_83 +26 val_26 +67 val_67 +18 val_18 +9 val_9 +18 val_18 +97 val_97 +84 val_84 +28 val_28 +37 val_37 +90 val_90 +97 val_97 +PREHOOK: query: -- SELECT JOINed product of two foreign tables +USE db2 +PREHOOK: type: SWITCHDATABASE +POSTHOOK: query: -- SELECT JOINed product of two foreign tables +USE db2 +POSTHOOK: type: SWITCHDATABASE +PREHOOK: query: SELECT a.* FROM db1.src a JOIN default.src1 b +ON (a.key = b.key) +PREHOOK: type: QUERY +PREHOOK: Input: db1@src +PREHOOK: Input: default@src1 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-15_698_7511939016053492082/-mr-10000 +POSTHOOK: query: SELECT a.* FROM db1.src a JOIN default.src1 b +ON (a.key = b.key) +POSTHOOK: type: QUERY +POSTHOOK: Input: db1@src +POSTHOOK: Input: default@src1 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-15_698_7511939016053492082/-mr-10000 +128 val_128 +128 val_128 +128 val_128 +146 val_146 +146 val_146 +150 val_150 +213 val_213 +213 val_213 +224 val_224 +224 val_224 +238 val_238 +238 val_238 +255 val_255 +255 val_255 +273 val_273 +273 val_273 +273 val_273 +278 val_278 +278 val_278 +311 val_311 +311 val_311 +311 val_311 +369 val_369 +369 val_369 +369 val_369 +401 val_401 +401 val_401 +401 val_401 +401 val_401 +401 val_401 +406 val_406 +406 val_406 +406 val_406 +406 val_406 +66 val_66 +98 val_98 +98 val_98 +PREHOOK: query: -- CREATE TABLE AS SELECT from foreign table +CREATE TABLE conflict_name AS +SELECT value FROM default.src WHERE key = 66 +PREHOOK: type: CREATETABLE_AS_SELECT +PREHOOK: Input: default@src +POSTHOOK: query: -- CREATE TABLE AS SELECT from foreign table +CREATE TABLE conflict_name AS +SELECT value FROM default.src WHERE key = 66 +POSTHOOK: type: CREATETABLE_AS_SELECT +POSTHOOK: Input: default@src +POSTHOOK: Output: db2@conflict_name +PREHOOK: query: -- CREATE foreign table +CREATE TABLE db1.conflict_name AS +SELECT value FROM db1.src WHERE key = 8 +PREHOOK: type: CREATETABLE_AS_SELECT +PREHOOK: Input: db1@src +POSTHOOK: query: -- CREATE foreign table +CREATE TABLE db1.conflict_name AS +SELECT value FROM db1.src WHERE key = 8 +POSTHOOK: type: CREATETABLE_AS_SELECT +POSTHOOK: Input: db1@src +POSTHOOK: Output: db1@conflict_name +PREHOOK: query: -- query tables with the same names in different DBs +SELECT * FROM ( + SELECT value FROM db1.conflict_name +UNION ALL + SELECT value FROM conflict_name +) subq ORDER BY value +PREHOOK: type: QUERY +PREHOOK: Input: db1@conflict_name +PREHOOK: Input: db2@conflict_name +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-26_087_6460717989691096433/-mr-10000 +POSTHOOK: query: -- query tables with the same names in different DBs +SELECT * FROM ( + SELECT value FROM db1.conflict_name +UNION ALL + SELECT value FROM conflict_name +) subq ORDER BY value +POSTHOOK: type: QUERY +POSTHOOK: Input: db1@conflict_name +POSTHOOK: Input: db2@conflict_name +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-26_087_6460717989691096433/-mr-10000 +val_66 +val_8 +PREHOOK: query: USE default +PREHOOK: type: SWITCHDATABASE +POSTHOOK: query: USE default +POSTHOOK: type: SWITCHDATABASE +PREHOOK: query: SELECT * FROM ( + SELECT value FROM db1.conflict_name +UNION ALL + SELECT value FROM db2.conflict_name +) subq ORDER BY value +PREHOOK: type: QUERY +PREHOOK: Input: db1@conflict_name +PREHOOK: Input: db2@conflict_name +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-29_569_4760700604948844000/-mr-10000 +POSTHOOK: query: SELECT * FROM ( + SELECT value FROM db1.conflict_name +UNION ALL + SELECT value FROM db2.conflict_name +) subq ORDER BY value +POSTHOOK: type: QUERY +POSTHOOK: Input: db1@conflict_name +POSTHOOK: Input: db2@conflict_name +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-29_569_4760700604948844000/-mr-10000 +val_66 +val_8 +PREHOOK: query: -- TABLESAMPLES +CREATE TABLE bucketized_src (key INT, value STRING) +CLUSTERED BY (key) SORTED BY (key) INTO 1 BUCKETS +PREHOOK: type: CREATETABLE +POSTHOOK: query: -- TABLESAMPLES +CREATE TABLE bucketized_src (key INT, value STRING) +CLUSTERED BY (key) SORTED BY (key) INTO 1 BUCKETS +POSTHOOK: type: CREATETABLE +POSTHOOK: Output: default@bucketized_src +PREHOOK: query: INSERT OVERWRITE TABLE bucketized_src +SELECT key, value FROM src WHERE key=66 +PREHOOK: type: QUERY +PREHOOK: Input: default@src +PREHOOK: Output: default@bucketized_src +POSTHOOK: query: INSERT OVERWRITE TABLE bucketized_src +SELECT key, value FROM src WHERE key=66 +POSTHOOK: type: QUERY +POSTHOOK: Input: default@src +POSTHOOK: Output: default@bucketized_src +POSTHOOK: Lineage: bucketized_src.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] +POSTHOOK: Lineage: bucketized_src.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] +PREHOOK: query: SELECT key FROM bucketized_src TABLESAMPLE(BUCKET 1 out of 1) +PREHOOK: type: QUERY +PREHOOK: Input: default@bucketized_src +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-38_988_112069995278861989/-mr-10000 +POSTHOOK: query: SELECT key FROM bucketized_src TABLESAMPLE(BUCKET 1 out of 1) +POSTHOOK: type: QUERY +POSTHOOK: Input: default@bucketized_src +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-38_988_112069995278861989/-mr-10000 +POSTHOOK: Lineage: bucketized_src.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] +POSTHOOK: Lineage: bucketized_src.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] +66 +PREHOOK: query: -- CREATE TABLE LIKE +CREATE TABLE db2.src1 LIKE default.src +PREHOOK: type: CREATETABLE +POSTHOOK: query: -- CREATE TABLE LIKE +CREATE TABLE db2.src1 LIKE default.src +POSTHOOK: type: CREATETABLE +POSTHOOK: Output: db2@src1 +POSTHOOK: Lineage: bucketized_src.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] +POSTHOOK: Lineage: bucketized_src.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] +PREHOOK: query: USE db2 +PREHOOK: type: SWITCHDATABASE +POSTHOOK: query: USE db2 +POSTHOOK: type: SWITCHDATABASE +POSTHOOK: Lineage: bucketized_src.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] +POSTHOOK: Lineage: bucketized_src.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] +PREHOOK: query: DESC EXTENDED src1 +PREHOOK: type: DESCTABLE +POSTHOOK: query: DESC EXTENDED src1 +POSTHOOK: type: DESCTABLE +POSTHOOK: Lineage: bucketized_src.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] +POSTHOOK: Lineage: bucketized_src.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] +key string default +value string default + +Detailed Table Information Table(tableName:src1, dbName:db2, owner:null, createTime:1297298682, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/db2.db/src1, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[], parameters:{transient_lastDdlTime=1297298682}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +PREHOOK: query: -- character escaping +SELECT key FROM `default`.src ORDER BY key LIMIT 1 +PREHOOK: type: QUERY +PREHOOK: Input: default@src +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-42_440_145101011848594604/-mr-10000 +POSTHOOK: query: -- character escaping +SELECT key FROM `default`.src ORDER BY key LIMIT 1 +POSTHOOK: type: QUERY +POSTHOOK: Input: default@src +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-42_440_145101011848594604/-mr-10000 +POSTHOOK: Lineage: bucketized_src.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] +POSTHOOK: Lineage: bucketized_src.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] +0 +PREHOOK: query: SELECT key FROM `default`.`src` ORDER BY key LIMIT 1 +PREHOOK: type: QUERY +PREHOOK: Input: default@src +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-45_701_6560463601447490145/-mr-10000 +POSTHOOK: query: SELECT key FROM `default`.`src` ORDER BY key LIMIT 1 +POSTHOOK: type: QUERY +POSTHOOK: Input: default@src +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-45_701_6560463601447490145/-mr-10000 +POSTHOOK: Lineage: bucketized_src.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] +POSTHOOK: Lineage: bucketized_src.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] +0 +PREHOOK: query: SELECT key FROM default.`src` ORDER BY key LIMIT 1 +PREHOOK: type: QUERY +PREHOOK: Input: default@src +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-49_089_4523523986113613592/-mr-10000 +POSTHOOK: query: SELECT key FROM default.`src` ORDER BY key LIMIT 1 +POSTHOOK: type: QUERY +POSTHOOK: Input: default@src +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_16-44-49_089_4523523986113613592/-mr-10000 +POSTHOOK: Lineage: bucketized_src.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] +POSTHOOK: Lineage: bucketized_src.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] +0 +PREHOOK: query: USE default +PREHOOK: type: SWITCHDATABASE +POSTHOOK: query: USE default +POSTHOOK: type: SWITCHDATABASE +POSTHOOK: Lineage: bucketized_src.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] +POSTHOOK: Lineage: bucketized_src.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/auto_join1.q.out =================================================================== --- ql/src/test/results/clientpositive/auto_join1.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/auto_join1.q.out (working copy) @@ -87,7 +87,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Local Work: Map Reduce Local Work @@ -99,7 +99,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Stage: Stage-2 Stats-Aggr Operator @@ -163,7 +163,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Local Work: Map Reduce Local Work @@ -230,7 +230,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 PREHOOK: query: FROM src src1 JOIN src src2 ON (src1.key = src2.key) @@ -248,11 +248,11 @@ PREHOOK: query: SELECT sum(hash(dest_j1.key,dest_j1.value)) FROM dest_j1 PREHOOK: type: QUERY PREHOOK: Input: default@dest_j1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-15_16-44-38_075_6667574704570584214/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-24-17_189_5477570458247518134/-mr-10000 POSTHOOK: query: SELECT sum(hash(dest_j1.key,dest_j1.value)) FROM dest_j1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_j1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-15_16-44-38_075_6667574704570584214/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-24-17_189_5477570458247518134/-mr-10000 POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src)src2.FieldSchema(name:value, type:string, comment:default), ] 101861029915 Index: ql/src/test/results/clientpositive/parallel.q.out =================================================================== --- ql/src/test/results/clientpositive/parallel.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/parallel.q.out (working copy) @@ -131,7 +131,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_17-13-50_531_2890192072832942497/-mr-10004 + file:/tmp/sdong/hive_2011-02-09_03-15-42_354_3166837725372150523/-mr-10004 Reduce Output Operator key expressions: expr: _col0 @@ -169,7 +169,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_a + name: default.src_a Stage: Stage-0 Move Operator @@ -179,7 +179,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_a + name: default.src_a Stage: Stage-4 Stats-Aggr Operator @@ -187,7 +187,7 @@ Stage: Stage-5 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_17-13-50_531_2890192072832942497/-mr-10005 + file:/tmp/sdong/hive_2011-02-09_03-15-42_354_3166837725372150523/-mr-10005 Reduce Output Operator key expressions: expr: _col0 @@ -225,7 +225,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_b + name: default.src_b Stage: Stage-1 Move Operator @@ -235,7 +235,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_b + name: default.src_b Stage: Stage-6 Stats-Aggr Operator @@ -262,11 +262,11 @@ PREHOOK: query: select * from src_a order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_a -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-14-02_165_5274023346481856318/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-15-53_476_6855432702097885940/-mr-10000 POSTHOOK: query: select * from src_a order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_a -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-14-02_165_5274023346481856318/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-15-53_476_6855432702097885940/-mr-10000 POSTHOOK: Lineage: src_a.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_a.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: src_b.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -583,11 +583,11 @@ PREHOOK: query: select * from src_b order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_b -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-14-06_366_5156248632763644240/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-15-57_631_2411088206395961951/-mr-10000 POSTHOOK: query: select * from src_b order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_b -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-14-06_366_5156248632763644240/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-15-57_631_2411088206395961951/-mr-10000 POSTHOOK: Lineage: src_a.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_a.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: src_b.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -926,11 +926,11 @@ PREHOOK: query: select * from src_a order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_a -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-14-23_195_3253242643234574753/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-16-12_679_6498662142250611988/-mr-10000 POSTHOOK: query: select * from src_a order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_a -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-14-23_195_3253242643234574753/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-16-12_679_6498662142250611988/-mr-10000 POSTHOOK: Lineage: src_a.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_a.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_a.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] @@ -1251,11 +1251,11 @@ PREHOOK: query: select * from src_b order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_b -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-14-27_387_483746667057079187/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-16-16_781_2622325518210433120/-mr-10000 POSTHOOK: query: select * from src_b order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_b -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-14-27_387_483746667057079187/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-16-16_781_2622325518210433120/-mr-10000 POSTHOOK: Lineage: src_a.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_a.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_a.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/load_dyn_part5.q.out =================================================================== --- ql/src/test/results/clientpositive/load_dyn_part5.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/load_dyn_part5.q.out (working copy) @@ -10,7 +10,7 @@ key string value string -Detailed Table Information Table(tableName:nzhang_part5, dbName:default, owner:njain, createTime:1289453712, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:null), FieldSchema(name:value, type:string, comment:null)], location:pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/nzhang_part5, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:value, type:string, comment:null)], parameters:{transient_lastDdlTime=1289453712}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:nzhang_part5, dbName:default, owner:sdong, createTime:1297249029, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:null), FieldSchema(name:value, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_part5, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:value, type:string, comment:null)], parameters:{transient_lastDdlTime=1297249029}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) PREHOOK: query: explain insert overwrite table nzhang_part5 partition (value) select key, value from src PREHOOK: type: QUERY @@ -46,7 +46,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part5 + name: default.nzhang_part5 Stage: Stage-0 Move Operator @@ -58,7 +58,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part5 + name: default.nzhang_part5 Stage: Stage-2 Stats-Aggr Operator @@ -1314,10 +1314,11 @@ PREHOOK: query: select * from nzhang_part5 where value='val_0' PREHOOK: type: QUERY PREHOOK: Input: default@nzhang_part5@value=val_0 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-10_21-40-36_161_6710404327731706501/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-00-27_372_2785824604417642062/-mr-10000 POSTHOOK: query: select * from nzhang_part5 where value='val_0' POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_part5@value=val_0 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-00-27_372_2785824604417642062/-mr-10000 POSTHOOK: Lineage: nzhang_part5 PARTITION(value=val_0).key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part5 PARTITION(value=val_100).key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part5 PARTITION(value=val_103).key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -1633,10 +1634,11 @@ PREHOOK: query: select * from nzhang_part5 where value='val_2' PREHOOK: type: QUERY PREHOOK: Input: default@nzhang_part5@value=val_2 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-10_21-40-37_152_5330844794317808520/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-00-28_011_967513290741298862/-mr-10000 POSTHOOK: query: select * from nzhang_part5 where value='val_2' POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_part5@value=val_2 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-00-28_011_967513290741298862/-mr-10000 POSTHOOK: Lineage: nzhang_part5 PARTITION(value=val_0).key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part5 PARTITION(value=val_100).key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part5 PARTITION(value=val_103).key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/groupby8_map_skew.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby8_map_skew.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby8_map_skew.q.out (working copy) @@ -85,7 +85,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-19-18_130_2771864261451244442/-mr-10004 + file:/tmp/sdong/hive_2011-02-09_02-13-02_790_6255919944206028519/-mr-10004 Reduce Output Operator key expressions: expr: _col0 @@ -129,7 +129,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -139,7 +139,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-4 Stats-Aggr Operator @@ -147,7 +147,7 @@ Stage: Stage-5 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-19-18_130_2771864261451244442/-mr-10005 + file:/tmp/sdong/hive_2011-02-09_02-13-02_790_6255919944206028519/-mr-10005 Reduce Output Operator key expressions: expr: _col0 @@ -191,7 +191,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-1 Move Operator @@ -201,7 +201,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-6 Stats-Aggr Operator @@ -228,11 +228,11 @@ PREHOOK: query: SELECT DEST1.* FROM DEST1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-19-34_779_6983072592533420151/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-13-17_076_5563295835772700643/-mr-10000 POSTHOOK: query: SELECT DEST1.* FROM DEST1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-19-34_779_6983072592533420151/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-13-17_076_5563295835772700643/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -549,11 +549,11 @@ PREHOOK: query: SELECT DEST2.* FROM DEST2 PREHOOK: type: QUERY PREHOOK: Input: default@dest2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-19-35_206_1431878980450207209/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-13-17_368_1918831709535799159/-mr-10000 POSTHOOK: query: SELECT DEST2.* FROM DEST2 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-19-35_206_1431878980450207209/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-13-17_368_1918831709535799159/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.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 1068243) +++ ql/src/test/results/clientpositive/sample6.q.out (working copy) @@ -52,9 +52,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-46_014_8924466582548738763/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-06_966_7768599851712149563/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-46_014_8924466582548738763/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-06_966_7768599851712149563/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -64,22 +64,22 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510285 + transient_lastDdlTime 1297250886 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: true MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt [s] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt [s] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt Partition base file name: srcbucket0.txt input format: org.apache.hadoop.mapred.TextInputFormat @@ -91,12 +91,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket - name srcbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket + name default.srcbucket serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504426 + transient_lastDdlTime 1297243146 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -108,15 +108,15 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket - name srcbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket + name default.srcbucket serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504426 + transient_lastDdlTime 1297243146 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket - name: srcbucket + name: default.srcbucket + name: default.srcbucket Stage: Stage-5 Conditional Operator @@ -125,14 +125,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-46_014_8924466582548738763/-ext-10002 - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-46_014_8924466582548738763/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-06_966_7768599851712149563/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-06_966_7768599851712149563/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-46_014_8924466582548738763/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-06_966_7768599851712149563/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -142,28 +142,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510285 + transient_lastDdlTime 1297250886 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - tmp directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-46_014_8924466582548738763/-ext-10001 + name: default.dest1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-06_966_7768599851712149563/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-46_014_8924466582548738763/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-06_966_7768599851712149563/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-46_014_8924466582548738763/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-06_966_7768599851712149563/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-46_014_8924466582548738763/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-06_966_7768599851712149563/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -174,22 +174,22 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510285 + transient_lastDdlTime 1297250886 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-46_014_8924466582548738763/-ext-10002 [pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-46_014_8924466582548738763/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-06_966_7768599851712149563/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-06_966_7768599851712149563/-ext-10002] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-46_014_8924466582548738763/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-06_966_7768599851712149563/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -200,12 +200,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510285 + transient_lastDdlTime 1297250886 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -216,15 +216,15 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510285 + transient_lastDdlTime 1297250886 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - name: dest1 + name: default.dest1 + name: default.dest1 PREHOOK: query: INSERT OVERWRITE TABLE dest1 SELECT s.* @@ -242,11 +242,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-24-52_602_2662316424952173793/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-12_064_6620828706996117587/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-24-52_602_2662316424952173793/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-12_064_6620828706996117587/-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 @@ -553,9 +553,9 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket/srcbucket1.txt [s] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket/srcbucket1.txt [s] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket/srcbucket1.txt + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket/srcbucket1.txt Partition base file name: srcbucket1.txt input format: org.apache.hadoop.mapred.TextInputFormat @@ -567,12 +567,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket - name srcbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket + name default.srcbucket serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504426 + transient_lastDdlTime 1297243146 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -584,23 +584,23 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket - name srcbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket + name default.srcbucket serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504426 + transient_lastDdlTime 1297243146 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket - name: srcbucket + name: default.srcbucket + name: default.srcbucket Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/nzhang/hive_2010-09-14_17-24-53_002_533983126018968346/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-28-12_359_4710681697944430926/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/nzhang/hive_2010-09-14_17-24-53_002_533983126018968346/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-28-12_359_4710681697944430926/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -621,12 +621,12 @@ ORDER BY key, value PREHOOK: type: QUERY PREHOOK: Input: default@srcbucket -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-24-53_250_4539562322091227053/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-12_551_7439596753240291320/-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/nzhang/hive_2010-09-14_17-24-53_250_4539562322091227053/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-12_551_7439596753240291320/-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 @@ -923,9 +923,9 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt [s] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt [s] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt Partition base file name: srcbucket0.txt input format: org.apache.hadoop.mapred.TextInputFormat @@ -937,12 +937,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket - name srcbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket + name default.srcbucket serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504426 + transient_lastDdlTime 1297243146 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -954,23 +954,23 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket - name srcbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket + name default.srcbucket serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504426 + transient_lastDdlTime 1297243146 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket - name: srcbucket + name: default.srcbucket + name: default.srcbucket Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/nzhang/hive_2010-09-14_17-24-57_026_2718577770255458785/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-28-16_029_1808075863799830698/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/nzhang/hive_2010-09-14_17-24-57_026_2718577770255458785/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-28-16_029_1808075863799830698/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -991,12 +991,12 @@ ORDER BY key, value PREHOOK: type: QUERY PREHOOK: Input: default@srcbucket -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-24-57_277_4821900235297777819/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-16_223_3112053062229285401/-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/nzhang/hive_2010-09-14_17-24-57_277_4821900235297777819/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-16_223_3112053062229285401/-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 @@ -1547,9 +1547,9 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket [s] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket [s] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket Partition base file name: srcbucket input format: org.apache.hadoop.mapred.TextInputFormat @@ -1561,12 +1561,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket - name srcbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket + name default.srcbucket serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504426 + transient_lastDdlTime 1297243146 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -1578,23 +1578,23 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket - name srcbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket + name default.srcbucket serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504426 + transient_lastDdlTime 1297243146 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket - name: srcbucket + name: default.srcbucket + name: default.srcbucket Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/nzhang/hive_2010-09-14_17-25-01_051_6447605395208317671/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-28-19_816_5086772596790353121/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/nzhang/hive_2010-09-14_17-25-01_051_6447605395208317671/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-28-19_816_5086772596790353121/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1615,12 +1615,12 @@ ORDER BY key, value PREHOOK: type: QUERY PREHOOK: Input: default@srcbucket -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-25-01_161_3575686286120830874/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-19_909_5534904663444402299/-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/nzhang/hive_2010-09-14_17-25-01_161_3575686286120830874/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-19_909_5534904663444402299/-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 @@ -2014,9 +2014,9 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket [s] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket [s] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket Partition base file name: srcbucket input format: org.apache.hadoop.mapred.TextInputFormat @@ -2028,12 +2028,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket - name srcbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket + name default.srcbucket serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504426 + transient_lastDdlTime 1297243146 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2045,23 +2045,23 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket - name srcbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket + name default.srcbucket serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504426 + transient_lastDdlTime 1297243146 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket - name: srcbucket + name: default.srcbucket + name: default.srcbucket Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/nzhang/hive_2010-09-14_17-25-05_752_5484487891016862969/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-28-23_333_6244603335050831557/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/nzhang/hive_2010-09-14_17-25-05_752_5484487891016862969/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-28-23_333_6244603335050831557/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -2082,12 +2082,12 @@ ORDER BY key, value PREHOOK: type: QUERY PREHOOK: Input: default@srcbucket -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-25-05_858_6264519128243618167/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-23_422_1953310509284261702/-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/nzhang/hive_2010-09-14_17-25-05_858_6264519128243618167/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-23_422_1953310509284261702/-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 @@ -2467,10 +2467,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket2/srcbucket20.txt [s] - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket2/srcbucket22.txt [s] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket2/srcbucket20.txt [s] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket2/srcbucket22.txt [s] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket2/srcbucket20.txt + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket2/srcbucket20.txt Partition base file name: srcbucket20.txt input format: org.apache.hadoop.mapred.TextInputFormat @@ -2482,12 +2482,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket2 - name srcbucket2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket2 + name default.srcbucket2 serialization.ddl struct srcbucket2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504428 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2499,16 +2499,16 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket2 - name srcbucket2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket2 + name default.srcbucket2 serialization.ddl struct srcbucket2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504428 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket2 - name: srcbucket2 - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket2/srcbucket22.txt + name: default.srcbucket2 + name: default.srcbucket2 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket2/srcbucket22.txt Partition base file name: srcbucket22.txt input format: org.apache.hadoop.mapred.TextInputFormat @@ -2520,12 +2520,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket2 - name srcbucket2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket2 + name default.srcbucket2 serialization.ddl struct srcbucket2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504428 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2537,23 +2537,23 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket2 - name srcbucket2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket2 + name default.srcbucket2 serialization.ddl struct srcbucket2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504428 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket2 - name: srcbucket2 + name: default.srcbucket2 + name: default.srcbucket2 Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/nzhang/hive_2010-09-14_17-25-10_451_2535168614473791178/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-28-26_835_7948005473336970365/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/nzhang/hive_2010-09-14_17-25-10_451_2535168614473791178/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-28-26_835_7948005473336970365/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -2574,12 +2574,12 @@ ORDER BY key, value PREHOOK: type: QUERY PREHOOK: Input: default@srcbucket2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-25-11_181_8784441563940501492/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-27_340_3242707304251672157/-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/nzhang/hive_2010-09-14_17-25-11_181_8784441563940501492/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-27_340_3242707304251672157/-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 @@ -2759,9 +2759,9 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket2/srcbucket21.txt [s] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket2/srcbucket21.txt [s] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket2/srcbucket21.txt + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket2/srcbucket21.txt Partition base file name: srcbucket21.txt input format: org.apache.hadoop.mapred.TextInputFormat @@ -2773,12 +2773,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket2 - name srcbucket2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket2 + name default.srcbucket2 serialization.ddl struct srcbucket2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504428 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2790,23 +2790,23 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket2 - name srcbucket2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket2 + name default.srcbucket2 serialization.ddl struct srcbucket2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504428 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket2 - name: srcbucket2 + name: default.srcbucket2 + name: default.srcbucket2 Reduce Operator Tree: Extract File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/nzhang/hive_2010-09-14_17-25-16_389_3169479756049941851/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-28-31_217_3429468165513659017/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/nzhang/hive_2010-09-14_17-25-16_389_3169479756049941851/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-28-31_217_3429468165513659017/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -2827,12 +2827,12 @@ ORDER BY key, value PREHOOK: type: QUERY PREHOOK: Input: default@srcbucket2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-25-16_781_3157391389694103452/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-31_508_2256039954984293930/-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/nzhang/hive_2010-09-14_17-25-16_781_3157391389694103452/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-31_508_2256039954984293930/-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 @@ -2939,9 +2939,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/nzhang/hive_2010-09-14_17-25-21_376_8476330244078104264/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-28-35_181_7140328848172649709/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/nzhang/hive_2010-09-14_17-25-21_376_8476330244078104264/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-28-35_181_7140328848172649709/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -2962,11 +2962,11 @@ ORDER BY key, value PREHOOK: type: QUERY PREHOOK: Input: default@empty_bucket -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-25-21_480_8277252386943120890/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-35_268_2686931913981576037/-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/nzhang/hive_2010-09-14_17-25-21_480_8277252386943120890/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-35_268_2686931913981576037/-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/join27.q.out =================================================================== --- ql/src/test/results/clientpositive/join27.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join27.q.out (working copy) @@ -98,7 +98,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Local Work: Map Reduce Local Work @@ -109,7 +109,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-09-55_355_6415074899212151208/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-30-01_070_8549536660760587128/-ext-10000 Stage: Stage-0 Move Operator @@ -119,7 +119,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Stage: Stage-2 Stats-Aggr Operator @@ -127,7 +127,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-09-55_355_6415074899212151208/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-30-01_070_8549536660760587128/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -135,7 +135,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 PREHOOK: query: INSERT OVERWRITE TABLE dest_j1 @@ -158,11 +158,11 @@ PREHOOK: query: select * from dest_j1 x order by x.key, x.value PREHOOK: type: QUERY PREHOOK: Input: default@dest_j1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_12-10-05_344_6343916336537575010/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-30-07_904_5327225476144952267/-mr-10000 POSTHOOK: query: select * from dest_j1 x order by x.key, x.value POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_j1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_12-10-05_344_6343916336537575010/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-30-07_904_5327225476144952267/-mr-10000 POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src1)x.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.val2 SIMPLE [(src)y.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src1)x.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/udf_length.q.out =================================================================== --- ql/src/test/results/clientpositive/udf_length.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/udf_length.q.out (working copy) @@ -50,7 +50,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Conditional Operator @@ -59,7 +59,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_18-04-35_216_2056119119160660990/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_04-01-24_314_3695627045778180613/-ext-10000 Stage: Stage-0 Move Operator @@ -69,7 +69,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -77,7 +77,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_18-04-35_216_2056119119160660990/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_04-01-24_314_3695627045778180613/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -85,7 +85,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM src1 INSERT OVERWRITE TABLE dest1 SELECT length(src1.value) @@ -100,11 +100,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-04-41_523_735254050434552120/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-01-29_018_2906474591878354625/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-04-41_523_735254050434552120/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-01-29_018_2906474591878354625/-mr-10000 POSTHOOK: Lineage: dest1.len EXPRESSION [(src1)src1.FieldSchema(name:value, type:string, comment:default), ] 7 0 @@ -193,10 +193,10 @@ PREHOOK: query: SELECT length(dest1.name) FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-04-43_257_9100387438276916655/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-01-30_272_8016891610136301954/-mr-10000 POSTHOOK: query: SELECT length(dest1.name) FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-04-43_257_9100387438276916655/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-01-30_272_8016891610136301954/-mr-10000 POSTHOOK: Lineage: dest1.len EXPRESSION [(src1)src1.FieldSchema(name:value, type:string, comment:default), ] 2 Index: ql/src/test/results/clientpositive/input4.q.out =================================================================== --- ql/src/test/results/clientpositive/input4.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input4.q.out (working copy) @@ -19,8 +19,8 @@ STAGE PLANS: Stage: Stage-0 Copy - source: file:/mnt/vol/devrs004.snc1/jssarma/projects/hive_trunk/data/files/kv1.txt - destination: file:/mnt/vol/devrs004.snc1/jssarma/projects/hive_trunk/build/ql/scratchdir/hive_2010-07-21_11-28-36_668_8539148391422299238/10000 + source: file:/data/users/sdong/www/open-source-hive1/data/files/kv1.txt + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-23-26_567_7428508132485846279/-ext-10000 Stage: Stage-1 Move Operator @@ -30,7 +30,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: input4 + name: default.input4 PREHOOK: query: LOAD DATA LOCAL INPATH '../data/files/kv1.txt' INTO TABLE INPUT4 @@ -41,11 +41,11 @@ PREHOOK: query: SELECT INPUT4.VALUE, INPUT4.KEY FROM INPUT4 PREHOOK: type: QUERY PREHOOK: Input: default@input4 -PREHOOK: Output: file:/tmp/jssarma/hive_2010-07-21_11-28-36_825_182661124432042155/10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-23-27_415_8737769366858416358/-mr-10000 POSTHOOK: query: SELECT INPUT4.VALUE, INPUT4.KEY FROM INPUT4 POSTHOOK: type: QUERY POSTHOOK: Input: default@input4 -POSTHOOK: Output: file:/tmp/jssarma/hive_2010-07-21_11-28-36_825_182661124432042155/10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-23-27_415_8737769366858416358/-mr-10000 val_238 238 val_86 86 val_311 311 Index: ql/src/test/results/clientpositive/union12.q.out =================================================================== --- ql/src/test/results/clientpositive/union12.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/union12.q.out (working copy) @@ -81,7 +81,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_18-17-08_605_1439847119800045323/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_04-15-08_392_2497989485405961412/-mr-10002 Union Select Operator expressions: @@ -104,8 +104,8 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable - file:/tmp/nzhang/hive_2010-09-14_18-17-08_605_1439847119800045323/-mr-10004 + name: default.tmptable + file:/tmp/sdong/hive_2011-02-09_04-15-08_392_2497989485405961412/-mr-10004 Union Select Operator expressions: @@ -128,8 +128,8 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable - file:/tmp/nzhang/hive_2010-09-14_18-17-08_605_1439847119800045323/-mr-10005 + name: default.tmptable + file:/tmp/sdong/hive_2011-02-09_04-15-08_392_2497989485405961412/-mr-10005 Union Select Operator expressions: @@ -152,7 +152,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable + name: default.tmptable Stage: Stage-6 Conditional Operator @@ -161,7 +161,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_18-17-08_605_1439847119800045323/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_04-15-08_392_2497989485405961412/-ext-10000 Stage: Stage-0 Move Operator @@ -171,7 +171,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable + name: default.tmptable Stage: Stage-3 Stats-Aggr Operator @@ -179,7 +179,7 @@ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_18-17-08_605_1439847119800045323/-ext-10003 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_04-15-08_392_2497989485405961412/-ext-10003 File Output Operator compressed: false GlobalTableId: 0 @@ -187,7 +187,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable + name: default.tmptable Stage: Stage-7 Map Reduce @@ -297,11 +297,11 @@ PREHOOK: query: select * from tmptable x sort by x.key PREHOOK: type: QUERY PREHOOK: Input: default@tmptable -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-17-28_935_6340798078420535385/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-15-23_319_3180572102736098322/-mr-10000 POSTHOOK: query: select * from tmptable x sort by x.key POSTHOOK: type: QUERY POSTHOOK: Input: default@tmptable -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-17-28_935_6340798078420535385/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-15-23_319_3180572102736098322/-mr-10000 POSTHOOK: Lineage: tmptable.key EXPRESSION [] POSTHOOK: Lineage: tmptable.value EXPRESSION [(src)s1.null, (src1)s2.null, (srcbucket)s3.null, ] tst1 500 Index: ql/src/test/results/clientpositive/groupby1_map_nomap.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby1_map_nomap.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby1_map_nomap.q.out (working copy) @@ -83,7 +83,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -93,7 +93,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -112,11 +112,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-13-53_431_7166464393607689291/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-07-25_605_3198365361481526268/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-13-53_431_7166464393607689291/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-07-25_605_3198365361481526268/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] 0 0.0 Index: ql/src/test/results/clientpositive/input18.q.out =================================================================== --- ql/src/test/results/clientpositive/input18.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input18.q.out (working copy) @@ -93,7 +93,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -103,7 +103,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -134,11 +134,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-27-40_009_4704505583726381922/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-20-40_083_6578550160782147420/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-27-40_009_4704505583726381922/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-20-40_083_6578550160782147420/-mr-10000 POSTHOOK: Lineage: dest1.key SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] 0 val_0+3+7 Index: ql/src/test/results/clientpositive/join36.q.out =================================================================== --- ql/src/test/results/clientpositive/join36.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join36.q.out (working copy) @@ -129,7 +129,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Local Work: Map Reduce Local Work @@ -140,7 +140,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-13-17_369_4823166777089074004/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-32-31_033_8555617697445681720/-ext-10000 Stage: Stage-0 Move Operator @@ -150,7 +150,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Stage: Stage-2 Stats-Aggr Operator @@ -158,7 +158,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-13-17_369_4823166777089074004/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-32-31_033_8555617697445681720/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -166,7 +166,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 PREHOOK: query: INSERT OVERWRITE TABLE dest_j1 @@ -193,11 +193,11 @@ PREHOOK: query: select * from dest_j1 x order by x.key PREHOOK: type: QUERY PREHOOK: Input: default@dest_j1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_12-13-27_195_6659028372004858698/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-32-38_922_1606727318474712755/-mr-10000 POSTHOOK: query: select * from dest_j1 x order by x.key POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_j1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_12-13-27_195_6659028372004858698/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-32-38_922_1606727318474712755/-mr-10000 POSTHOOK: Lineage: dest_j1.key SIMPLE [(tmp1)x.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: dest_j1.val2 SIMPLE [(tmp2)y.FieldSchema(name:cnt, type:int, comment:null), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(tmp1)x.FieldSchema(name:cnt, type:int, comment:null), ] Index: ql/src/test/results/clientpositive/input_part5.q.out =================================================================== --- ql/src/test/results/clientpositive/input_part5.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input_part5.q.out (working copy) @@ -55,7 +55,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable + name: default.tmptable Stage: Stage-5 Conditional Operator @@ -64,7 +64,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-33-52_690_4501272582403071835/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-26-07_571_5581852341043007921/-ext-10000 Stage: Stage-0 Move Operator @@ -74,7 +74,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable + name: default.tmptable Stage: Stage-2 Stats-Aggr Operator @@ -82,7 +82,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-33-52_690_4501272582403071835/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-26-07_571_5581852341043007921/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -90,7 +90,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable + name: default.tmptable PREHOOK: query: insert overwrite table tmptable @@ -112,11 +112,11 @@ PREHOOK: query: select * from tmptable x sort by x.key,x.value,x.ds,x.hr PREHOOK: type: QUERY PREHOOK: Input: default@tmptable -PREHOOK: Output: file:/tmp/sdong/hive_2010-10-29_15-34-01_055_4260628118574102608/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-26-13_237_4702816067449869926/-mr-10000 POSTHOOK: query: select * from tmptable x sort by x.key,x.value,x.ds,x.hr POSTHOOK: type: QUERY POSTHOOK: Input: default@tmptable -POSTHOOK: Output: file:/tmp/sdong/hive_2010-10-29_15-34-01_055_4260628118574102608/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-26-13_237_4702816067449869926/-mr-10000 POSTHOOK: Lineage: tmptable.ds SIMPLE [(srcpart)x.FieldSchema(name:hr, type:string, comment:null), ] POSTHOOK: Lineage: tmptable.hr SIMPLE [(srcpart)x.FieldSchema(name:ds, type:string, comment:null), ] POSTHOOK: Lineage: tmptable.key SIMPLE [(srcpart)x.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/bucketmapjoin3.q.out =================================================================== --- ql/src/test/results/clientpositive/bucketmapjoin3.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/bucketmapjoin3.q.out (working copy) @@ -122,10 +122,10 @@ Alias Bucket Base File Name Mapping: b {srcbucket22.txt=[srcbucket20.txt, srcbucket22.txt], srcbucket23.txt=[srcbucket21.txt, srcbucket23.txt]} Alias Bucket File Name Mapping: - b {pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket22.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket20.txt, pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket22.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket23.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket21.txt, pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket23.txt]} + b {pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket22.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket20.txt, pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket22.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket23.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket21.txt, pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket23.txt]} Alias Bucket Output File Name Mapping: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket22.txt 0 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket23.txt 1 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket22.txt 0 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket23.txt 1 Stage: Stage-1 Map Reduce @@ -172,9 +172,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-36-28_593_5656522145364934245/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-52-21_877_1237087629842879252/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-36-28_593_5656522145364934245/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-52-21_877_1237087629842879252/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -184,14 +184,14 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266588 + transient_lastDdlTime 1297245141 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -199,9 +199,9 @@ Map Reduce Local Work Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08 [a] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08 [a] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08 Partition base file name: ds=2008-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -215,13 +215,13 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2 - name srcbucket_mapjoin_part_2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08 + name default.srcbucket_mapjoin_part_2 partition_columns ds serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266586 + transient_lastDdlTime 1297245140 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -233,16 +233,16 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2 - name srcbucket_mapjoin_part_2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2 + name default.srcbucket_mapjoin_part_2 partition_columns ds serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266586 + transient_lastDdlTime 1297245140 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket_mapjoin_part_2 - name: srcbucket_mapjoin_part_2 + name: default.srcbucket_mapjoin_part_2 + name: default.srcbucket_mapjoin_part_2 Stage: Stage-5 Conditional Operator @@ -251,14 +251,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-36-28_593_5656522145364934245/-ext-10002 - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-36-28_593_5656522145364934245/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-52-21_877_1237087629842879252/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-52-21_877_1237087629842879252/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-36-28_593_5656522145364934245/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-52-21_877_1237087629842879252/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -268,28 +268,28 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266588 + transient_lastDdlTime 1297245141 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - tmp directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-36-28_593_5656522145364934245/-ext-10001 + name: default.bucketmapjoin_tmp_result + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-52-21_877_1237087629842879252/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-36-28_593_5656522145364934245/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-52-21_877_1237087629842879252/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-36-28_593_5656522145364934245/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-52-21_877_1237087629842879252/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-36-28_593_5656522145364934245/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-52-21_877_1237087629842879252/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -300,22 +300,22 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266588 + transient_lastDdlTime 1297245141 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-36-28_593_5656522145364934245/-ext-10002 [pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-36-28_593_5656522145364934245/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-52-21_877_1237087629842879252/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-52-21_877_1237087629842879252/-ext-10002] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-36-28_593_5656522145364934245/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-52-21_877_1237087629842879252/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -326,12 +326,12 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266588 + transient_lastDdlTime 1297245141 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -342,15 +342,15 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266588 + transient_lastDdlTime 1297245141 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result PREHOOK: query: insert overwrite table bucketmapjoin_tmp_result @@ -375,11 +375,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-36-45_045_5247628416990409526/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-52-29_653_3126349947092311568/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-36-45_045_5247628416990409526/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-52-29_653_3126349947092311568/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_tmp_result.key SIMPLE [(srcbucket_mapjoin_part_2)a.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_tmp_result.value1 SIMPLE [(srcbucket_mapjoin_part_2)a.FieldSchema(name:value, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_tmp_result.value2 SIMPLE [(srcbucket_mapjoin_part)b.FieldSchema(name:value, type:string, comment:null), ] @@ -428,11 +428,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-37-11_355_4701836415203720955/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-52-45_097_3503670401794196699/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-37-11_355_4701836415203720955/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-52-45_097_3503670401794196699/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value2 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value2, type:string, comment:null), ] @@ -471,14 +471,14 @@ PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_hash_result_1 PREHOOK: Input: default@bucketmapjoin_hash_result_2 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-37-22_340_1809276735979281182/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-52-58_953_2564387130358473173/-mr-10000 POSTHOOK: query: select a.key-b.key, a.value1-b.value1, a.value2-b.value2 from bucketmapjoin_hash_result_1 a left outer join bucketmapjoin_hash_result_2 b on a.key = b.key POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_hash_result_1 POSTHOOK: Input: default@bucketmapjoin_hash_result_2 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-37-22_340_1809276735979281182/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-52-58_953_2564387130358473173/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value2 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value2, type:string, comment:null), ] @@ -558,12 +558,12 @@ Alias Bucket Base File Name Mapping: a {srcbucket20.txt=[srcbucket22.txt], srcbucket21.txt=[srcbucket23.txt], srcbucket22.txt=[srcbucket22.txt], srcbucket23.txt=[srcbucket23.txt]} Alias Bucket File Name Mapping: - a {pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket20.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket22.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket21.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket23.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket22.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket22.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket23.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket23.txt]} + a {pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket20.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket22.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket21.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket23.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket22.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket22.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket23.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part_2/ds=2008-04-08/srcbucket23.txt]} Alias Bucket Output File Name Mapping: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket20.txt 0 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket21.txt 1 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket22.txt 2 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket23.txt 3 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket20.txt 0 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket21.txt 1 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket22.txt 2 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket23.txt 3 Stage: Stage-1 Map Reduce @@ -610,9 +610,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-37-28_134_766191094581042721/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-02_754_4328192261146433661/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-37-28_134_766191094581042721/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-02_754_4328192261146433661/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -622,8 +622,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 564 @@ -631,9 +631,9 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 11067 - transient_lastDdlTime 1289266631 + transient_lastDdlTime 1297245165 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -641,9 +641,9 @@ Map Reduce Local Work Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08 [b] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08 [b] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08 Partition base file name: ds=2008-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -657,13 +657,13 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part - name srcbucket_mapjoin_part + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08 + name default.srcbucket_mapjoin_part partition_columns ds serialization.ddl struct srcbucket_mapjoin_part { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266581 + transient_lastDdlTime 1297245137 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -675,16 +675,16 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part - name srcbucket_mapjoin_part + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part + name default.srcbucket_mapjoin_part partition_columns ds serialization.ddl struct srcbucket_mapjoin_part { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289266581 + transient_lastDdlTime 1297245137 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket_mapjoin_part - name: srcbucket_mapjoin_part + name: default.srcbucket_mapjoin_part + name: default.srcbucket_mapjoin_part Stage: Stage-5 Conditional Operator @@ -693,14 +693,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-37-28_134_766191094581042721/-ext-10002 - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-37-28_134_766191094581042721/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-02_754_4328192261146433661/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-02_754_4328192261146433661/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-37-28_134_766191094581042721/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-02_754_4328192261146433661/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -710,8 +710,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 564 @@ -719,23 +719,23 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 11067 - transient_lastDdlTime 1289266631 + transient_lastDdlTime 1297245165 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - tmp directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-37-28_134_766191094581042721/-ext-10001 + name: default.bucketmapjoin_tmp_result + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-02_754_4328192261146433661/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-37-28_134_766191094581042721/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-02_754_4328192261146433661/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-37-28_134_766191094581042721/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-02_754_4328192261146433661/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-37-28_134_766191094581042721/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-02_754_4328192261146433661/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -746,8 +746,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 564 @@ -755,17 +755,17 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 11067 - transient_lastDdlTime 1289266631 + transient_lastDdlTime 1297245165 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-37-28_134_766191094581042721/-ext-10002 [pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-37-28_134_766191094581042721/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-02_754_4328192261146433661/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-02_754_4328192261146433661/-ext-10002] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_17-37-28_134_766191094581042721/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-02_754_4328192261146433661/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -776,8 +776,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 564 @@ -785,7 +785,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 11067 - transient_lastDdlTime 1289266631 + transient_lastDdlTime 1297245165 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -796,8 +796,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 564 @@ -805,10 +805,10 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 11067 - transient_lastDdlTime 1289266631 + transient_lastDdlTime 1297245165 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result PREHOOK: query: insert overwrite table bucketmapjoin_tmp_result @@ -845,11 +845,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-37-46_601_4275896744676736010/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-53-15_380_2459327123542347036/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-37-46_601_4275896744676736010/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-53-15_380_2459327123542347036/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value2 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value2, type:string, comment:null), ] @@ -934,11 +934,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-38-16_563_2631614957089053546/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-53-31_249_8566971012844748128/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-38-16_563_2631614957089053546/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-53-31_249_8566971012844748128/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value2 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value2, type:string, comment:null), ] @@ -1001,14 +1001,14 @@ PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_hash_result_1 PREHOOK: Input: default@bucketmapjoin_hash_result_2 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-38-27_870_6358329541404712380/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-53-45_142_694287016715740197/-mr-10000 POSTHOOK: query: select a.key-b.key, a.value1-b.value1, a.value2-b.value2 from bucketmapjoin_hash_result_1 a left outer join bucketmapjoin_hash_result_2 b on a.key = b.key POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_hash_result_1 POSTHOOK: Input: default@bucketmapjoin_hash_result_2 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_17-38-27_870_6358329541404712380/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-53-45_142_694287016715740197/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value2 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value2, type:string, comment:null), ] Index: ql/src/test/results/clientpositive/input_part10.q.out =================================================================== --- ql/src/test/results/clientpositive/input_part10.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input_part10.q.out (working copy) @@ -64,7 +64,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: part_special + name: default.part_special Stage: Stage-0 Move Operator @@ -77,7 +77,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: part_special + name: default.part_special Stage: Stage-2 Stats-Aggr Operator @@ -106,15 +106,15 @@ ds string ts string -Detailed Partition Information Partition(values:[2008 04 08, 10:11:12=455], dbName:default, tableName:part_special, createTime:1286799702, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:a, type:string, comment:null), FieldSchema(name:b, type:string, comment:null)], location:pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/test/data/warehouse/part_special/ds=2008 04 08/ts=10%3A11%3A12%3D455, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1286799702, numRows=1, totalSize=4}) +Detailed Partition Information Partition(values:[2008 04 08, 10:11:12=455], dbName:default, tableName:part_special, createTime:1297247152, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:a, type:string, comment:null), FieldSchema(name:b, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/part_special/ds=2008 04 08/ts=10%3A11%3A12%3D455, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1297247152, numRows=1, totalSize=4}) PREHOOK: query: SELECT * FROM part_special WHERE ds='2008 04 08' AND ts = '10:11:12=455' PREHOOK: type: QUERY PREHOOK: Input: default@part_special@ds=2008 04 08/ts=10%3A11%3A12%3D455 -PREHOOK: Output: file:/tmp/thiruvel/hive_2010-10-11_05-21-42_889_255644628587795756/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-25-52_614_3567925533285684857/-mr-10000 POSTHOOK: query: SELECT * FROM part_special WHERE ds='2008 04 08' AND ts = '10:11:12=455' POSTHOOK: type: QUERY POSTHOOK: Input: default@part_special@ds=2008 04 08/ts=10%3A11%3A12%3D455 -POSTHOOK: Output: file:/tmp/thiruvel/hive_2010-10-11_05-21-42_889_255644628587795756/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-25-52_614_3567925533285684857/-mr-10000 POSTHOOK: Lineage: part_special PARTITION(ds=2008 04 08,ts=10:11:12=455).a SIMPLE [] POSTHOOK: Lineage: part_special PARTITION(ds=2008 04 08,ts=10:11:12=455).b SIMPLE [] 1 2 2008 04 08 10:11:12=455 Index: ql/src/test/results/clientpositive/mapreduce8.q.out =================================================================== --- ql/src/test/results/clientpositive/mapreduce8.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/mapreduce8.q.out (working copy) @@ -102,7 +102,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -112,7 +112,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -145,11 +145,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-04-00_970_4631962200725249952/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-05-54_329_1985226412211740716/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-04-00_970_4631962200725249952/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-05-54_329_1985226412211740716/-mr-10000 POSTHOOK: Lineage: dest1.k SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.key SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.one SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/sample1.q.out =================================================================== --- ql/src/test/results/clientpositive/sample1.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/sample1.q.out (working copy) @@ -69,9 +69,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-04-13_003_6538249259772726554/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-06_797_6837774101604040839/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-04-13_003_6538249259772726554/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-06_797_6837774101604040839/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -81,22 +81,22 @@ columns.types int:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value, string dt, string hr} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288649052 + transient_lastDdlTime 1297250826 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: true MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [s] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [s] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -110,13 +110,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288648959 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -127,16 +127,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288648959 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Stage: Stage-5 Conditional Operator @@ -145,14 +145,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-04-13_003_6538249259772726554/-ext-10002 - destination: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-04-13_003_6538249259772726554/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-06_797_6837774101604040839/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-06_797_6837774101604040839/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-04-13_003_6538249259772726554/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-06_797_6837774101604040839/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -162,28 +162,28 @@ columns.types int:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value, string dt, string hr} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288649052 + transient_lastDdlTime 1297250826 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - tmp directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-04-13_003_6538249259772726554/-ext-10001 + name: default.dest1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-06_797_6837774101604040839/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-04-13_003_6538249259772726554/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-06_797_6837774101604040839/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-04-13_003_6538249259772726554/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-06_797_6837774101604040839/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-04-13_003_6538249259772726554/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-06_797_6837774101604040839/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -194,22 +194,22 @@ columns.types int:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value, string dt, string hr} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288649052 + transient_lastDdlTime 1297250826 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-04-13_003_6538249259772726554/-ext-10002 [pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-04-13_003_6538249259772726554/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-06_797_6837774101604040839/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-06_797_6837774101604040839/-ext-10002] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-11-01_15-04-13_003_6538249259772726554/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-06_797_6837774101604040839/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -220,12 +220,12 @@ columns.types int:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value, string dt, string hr} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288649052 + transient_lastDdlTime 1297250826 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -236,15 +236,15 @@ columns.types int:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value, string dt, string hr} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288649052 + transient_lastDdlTime 1297250826 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - name: dest1 + name: default.dest1 + name: default.dest1 PREHOOK: query: INSERT OVERWRITE TABLE dest1 SELECT s.* @@ -266,11 +266,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/sdong/hive_2010-11-01_15-04-17_639_5160677026468817969/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-27-11_765_1840986266945199079/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/sdong/hive_2010-11-01_15-04-17_639_5160677026468817969/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-27-11_765_1840986266945199079/-mr-10000 POSTHOOK: Lineage: dest1.dt SIMPLE [(srcpart)s.FieldSchema(name:ds, type:string, comment:null), ] POSTHOOK: Lineage: dest1.hr SIMPLE [(srcpart)s.FieldSchema(name:hr, type:string, comment:null), ] POSTHOOK: Lineage: dest1.key EXPRESSION [(srcpart)s.FieldSchema(name:key, type:string, comment:default), ] @@ -778,11 +778,11 @@ PREHOOK: query: select count(1) from srcbucket PREHOOK: type: QUERY PREHOOK: Input: default@srcbucket -PREHOOK: Output: file:/tmp/sdong/hive_2010-11-01_15-04-17_944_7260934225415330191/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-27-12_076_6778081030265597559/-mr-10000 POSTHOOK: query: select count(1) from srcbucket POSTHOOK: type: QUERY POSTHOOK: Input: default@srcbucket -POSTHOOK: Output: file:/tmp/sdong/hive_2010-11-01_15-04-17_944_7260934225415330191/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-27-12_076_6778081030265597559/-mr-10000 POSTHOOK: Lineage: dest1.dt SIMPLE [(srcpart)s.FieldSchema(name:ds, type:string, comment:null), ] POSTHOOK: Lineage: dest1.hr SIMPLE [(srcpart)s.FieldSchema(name:hr, type:string, comment:null), ] POSTHOOK: Lineage: dest1.key EXPRESSION [(srcpart)s.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/groupby6_map_skew.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby6_map_skew.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby6_map_skew.q.out (working copy) @@ -66,7 +66,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-17-02_295_2564025665394865331/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-11-04_303_5324757001692965186/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -96,7 +96,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -106,7 +106,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-3 Stats-Aggr Operator @@ -125,11 +125,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-17-11_277_817938108745862478/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-11-17_371_2979019863432792899/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-17-11_277_817938108745862478/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-11-17_371_2979019863432792899/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] 0 1 Index: ql/src/test/results/clientpositive/groupby1_limit.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby1_limit.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby1_limit.q.out (working copy) @@ -81,7 +81,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-13-25_960_7399358690321555883/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-06-57_961_2882603400362891481/-mr-10002 Reduce Output Operator sort order: tag: -1 @@ -107,7 +107,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -117,7 +117,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-3 Stats-Aggr Operator @@ -136,11 +136,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-13-36_134_6079751361669392445/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-07-05_920_9121401417232399325/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-13-36_134_6079751361669392445/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-07-05_920_9121401417232399325/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] 0 0.0 Index: ql/src/test/results/clientpositive/cast1.q.out =================================================================== --- ql/src/test/results/clientpositive/cast1.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/cast1.q.out (working copy) @@ -59,7 +59,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Conditional Operator @@ -68,7 +68,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-01-58_873_7254645115593805621/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-57-00_075_7001779732855444731/-ext-10000 Stage: Stage-0 Move Operator @@ -78,7 +78,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -86,7 +86,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-01-58_873_7254645115593805621/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-57-00_075_7001779732855444731/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -94,7 +94,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM src INSERT OVERWRITE TABLE dest1 SELECT 3 + 2, 3.0 + 2, 3 + 2.0, 3.0 + 2.0, 3 + CAST(2.0 AS INT) + CAST(CAST(0 AS SMALLINT) AS INT), CAST(1 AS BOOLEAN), CAST(TRUE AS INT) WHERE src.key = 86 @@ -115,11 +115,11 @@ PREHOOK: query: select dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-02-05_020_7988700677189658723/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-57-05_434_6741419500613764984/-mr-10000 POSTHOOK: query: select dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-02-05_020_7988700677189658723/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-57-05_434_6741419500613764984/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [] POSTHOOK: Lineage: dest1.c2 EXPRESSION [] POSTHOOK: Lineage: dest1.c3 EXPRESSION [] Index: ql/src/test/results/clientpositive/stats1.q.out =================================================================== --- ql/src/test/results/clientpositive/stats1.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/stats1.q.out (working copy) @@ -71,7 +71,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/thiruvel/hive_2010-10-11_12-40-43_920_7464404777180584999/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_03-44-33_145_7062045660348373547/-mr-10002 Union Select Operator expressions: @@ -87,8 +87,8 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable - file:/tmp/thiruvel/hive_2010-10-11_12-40-43_920_7464404777180584999/-mr-10003 + name: default.tmptable + file:/tmp/sdong/hive_2011-02-09_03-44-33_145_7062045660348373547/-mr-10003 Union Select Operator expressions: @@ -104,7 +104,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable + name: default.tmptable Stage: Stage-0 Move Operator @@ -114,7 +114,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tmptable + name: default.tmptable Stage: Stage-3 Stats-Aggr Operator @@ -163,11 +163,11 @@ PREHOOK: query: SELECT * FROM tmptable x SORT BY x.key, x.value PREHOOK: type: QUERY PREHOOK: Input: default@tmptable -PREHOOK: Output: file:/tmp/thiruvel/hive_2010-10-11_12-40-52_217_4617099280093332761/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-44-44_333_3038379081433914705/-mr-10000 POSTHOOK: query: SELECT * FROM tmptable x SORT BY x.key, x.value POSTHOOK: type: QUERY POSTHOOK: Input: default@tmptable -POSTHOOK: Output: file:/tmp/thiruvel/hive_2010-10-11_12-40-52_217_4617099280093332761/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-44-44_333_3038379081433914705/-mr-10000 POSTHOOK: Lineage: tmptable.key EXPRESSION [(src1)s2.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: tmptable.value EXPRESSION [(src)s1.null, (src1)s2.FieldSchema(name:value, type:string, comment:default), ] @@ -205,4 +205,4 @@ key string value string -Detailed Table Information Table(tableName:tmptable, dbName:default, owner:thiruvel, createTime:1286826043, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:null), FieldSchema(name:value, type:string, comment:null)], location:pfile:/home/thiruvel/projects/hive/hive.unsecure/build/ql/test/data/warehouse/tmptable, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[], parameters:{numPartitions=0, numFiles=2, transient_lastDdlTime=1286826052, numRows=26, totalSize=225}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:tmptable, dbName:default, owner:sdong, createTime:1297251873, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:null), FieldSchema(name:value, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/tmptable, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[], parameters:{numPartitions=0, numFiles=1, transient_lastDdlTime=1297251884, numRows=26, totalSize=225}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) Index: ql/src/test/results/clientpositive/ppd_constant_expr.q.out =================================================================== --- ql/src/test/results/clientpositive/ppd_constant_expr.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/ppd_constant_expr.q.out (working copy) @@ -54,7 +54,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: ppd_constant_expr + name: default.ppd_constant_expr Stage: Stage-5 Conditional Operator @@ -63,7 +63,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-16-55_565_7273157164106376396/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-49_731_21616605259049914/-ext-10000 Stage: Stage-0 Move Operator @@ -73,7 +73,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: ppd_constant_expr + name: default.ppd_constant_expr Stage: Stage-2 Stats-Aggr Operator @@ -81,7 +81,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-16-55_565_7273157164106376396/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-21-49_731_21616605259049914/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -89,7 +89,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: ppd_constant_expr + name: default.ppd_constant_expr PREHOOK: query: FROM src1 @@ -108,11 +108,11 @@ PREHOOK: query: SELECT ppd_constant_expr.* FROM ppd_constant_expr PREHOOK: type: QUERY PREHOOK: Input: default@ppd_constant_expr -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-17-01_828_7275648177476387111/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-21-54_549_7805922917197822791/-mr-10000 POSTHOOK: query: SELECT ppd_constant_expr.* FROM ppd_constant_expr POSTHOOK: type: QUERY POSTHOOK: Input: default@ppd_constant_expr -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-17-01_828_7275648177476387111/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-21-54_549_7805922917197822791/-mr-10000 POSTHOOK: Lineage: ppd_constant_expr.c1 EXPRESSION [] POSTHOOK: Lineage: ppd_constant_expr.c2 EXPRESSION [(src1)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: ppd_constant_expr.c3 EXPRESSION [] Index: ql/src/test/results/clientpositive/rand_partitionpruner3.q.out =================================================================== --- ql/src/test/results/clientpositive/rand_partitionpruner3.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/rand_partitionpruner3.q.out (working copy) @@ -40,9 +40,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-11-03_12-58-26_324_5535341403749626672/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-24-44_530_6574408145263692217/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-11-03_12-58-26_324_5535341403749626672/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-24-44_530_6574408145263692217/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -55,9 +55,9 @@ MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/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-08/hr=12 [a] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/data/users/sdong/www/open-source-hive1/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 +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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288808954 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -88,16 +88,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288808954 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Stage: Stage-0 Fetch Operator @@ -107,11 +107,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_2010-11-03_12-58-26_440_4005876518222826805/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-24-44_647_3490954105271962470/-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_2010-11-03_12-58-26_440_4005876518222826805/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-24-44_647_3490954105271962470/-mr-10000 42 val_42 2008-04-08 12 44 val_44 2008-04-08 12 26 val_26 2008-04-08 12 @@ -162,9 +162,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-11-03_12-58-29_501_7521924359924125192/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-24-48_103_2234670320586886236/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-11-03_12-58-29_501_7521924359924125192/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-24-48_103_2234670320586886236/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -177,9 +177,9 @@ MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/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-08/hr=12 [a] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/data/users/sdong/www/open-source-hive1/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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288808954 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -210,16 +210,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288808954 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Stage: Stage-0 Fetch Operator @@ -229,11 +229,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_2010-11-03_12-58-29_615_5245958848424266073/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-24-48_222_212588243040186789/-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_2010-11-03_12-58-29_615_5245958848424266073/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-24-48_222_212588243040186789/-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/groupby2_noskew.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby2_noskew.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby2_noskew.q.out (working copy) @@ -80,7 +80,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_g2 + name: default.dest_g2 Stage: Stage-0 Move Operator @@ -90,7 +90,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_g2 + name: default.dest_g2 Stage: Stage-2 Stats-Aggr Operator @@ -112,11 +112,11 @@ PREHOOK: query: SELECT dest_g2.* FROM dest_g2 PREHOOK: type: QUERY PREHOOK: Input: default@dest_g2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-14-45_836_7801785080274735251/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-08-30_333_3266597639233231784/-mr-10000 POSTHOOK: query: SELECT dest_g2.* FROM dest_g2 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_g2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-14-45_836_7801785080274735251/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-08-30_333_3266597639233231784/-mr-10000 POSTHOOK: Lineage: dest_g2.c1 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest_g2.c2 EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest_g2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/input13.q.out =================================================================== --- ql/src/test/results/clientpositive/input13.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input13.q.out (working copy) @@ -84,7 +84,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Filter Operator predicate: expr: ((key >= 100) and (key < 200)) @@ -110,7 +110,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Filter Operator predicate: expr: ((key >= 200) and (key < 300)) @@ -132,7 +132,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest3 + name: default.dest3 Filter Operator predicate: expr: (key >= 300) @@ -156,7 +156,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-11_09-14-34_733_8268759755961112825/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-20-01_822_3342655991765763827/-ext-10000 Stage: Stage-0 Move Operator @@ -166,7 +166,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Stats-Aggr Operator @@ -174,7 +174,7 @@ Stage: Stage-6 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-11_09-14-34_733_8268759755961112825/-ext-10007 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-20-01_822_3342655991765763827/-ext-10007 File Output Operator compressed: false GlobalTableId: 0 @@ -182,7 +182,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-12 Conditional Operator @@ -191,7 +191,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-11_09-14-34_733_8268759755961112825/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-20-01_822_3342655991765763827/-ext-10002 Stage: Stage-1 Move Operator @@ -201,7 +201,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-9 Stats-Aggr Operator @@ -209,7 +209,7 @@ Stage: Stage-10 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-11_09-14-34_733_8268759755961112825/-ext-10008 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-20-01_822_3342655991765763827/-ext-10008 File Output Operator compressed: false GlobalTableId: 0 @@ -217,7 +217,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-16 Conditional Operator @@ -226,7 +226,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-11_09-14-34_733_8268759755961112825/-ext-10004 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-20-01_822_3342655991765763827/-ext-10004 Stage: Stage-2 Move Operator @@ -239,7 +239,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest3 + name: default.dest3 Stage: Stage-13 Stats-Aggr Operator @@ -247,7 +247,7 @@ Stage: Stage-14 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-11_09-14-34_733_8268759755961112825/-ext-10009 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-20-01_822_3342655991765763827/-ext-10009 File Output Operator compressed: false GlobalTableId: 0 @@ -255,7 +255,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest3 + name: default.dest3 Stage: Stage-19 Conditional Operator @@ -264,7 +264,7 @@ Move Operator files: hdfs directory: true - destination: file:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-11_09-14-34_733_8268759755961112825/-ext-10006 + destination: file:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-20-01_822_3342655991765763827/-ext-10006 Stage: Stage-3 Move Operator @@ -275,7 +275,7 @@ Stage: Stage-17 Map Reduce Alias -> Map Operator Tree: - file:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-11_09-14-34_733_8268759755961112825/-ext-10010 + file:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-20-01_822_3342655991765763827/-ext-10010 File Output Operator compressed: false GlobalTableId: 0 @@ -314,11 +314,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-11_09-14-45_811_5072715276806685730/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-20-08_321_4881946643384864177/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/njain/hive_2010-11-11_09-14-45_811_5072715276806685730/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-20-08_321_4881946643384864177/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -411,11 +411,11 @@ PREHOOK: query: SELECT dest2.* FROM dest2 PREHOOK: type: QUERY PREHOOK: Input: default@dest2 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-11_09-14-46_148_1275462776207288463/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-20-08_614_7038841228815069516/-mr-10000 POSTHOOK: query: SELECT dest2.* FROM dest2 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest2 -POSTHOOK: Output: file:/tmp/njain/hive_2010-11-11_09-14-46_148_1275462776207288463/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-20-08_614_7038841228815069516/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -529,11 +529,11 @@ PREHOOK: query: SELECT dest3.* FROM dest3 PREHOOK: type: QUERY PREHOOK: Input: default@dest3@ds=2008-04-08/hr=12 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-11_09-14-46_464_8762219816637993727/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-20-08_927_3437332063709933357/-mr-10000 POSTHOOK: query: SELECT dest3.* FROM dest3 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest3@ds=2008-04-08/hr=12 -POSTHOOK: Output: file:/tmp/njain/hive_2010-11-11_09-14-46_464_8762219816637993727/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-20-08_927_3437332063709933357/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/join31.q.out =================================================================== --- ql/src/test/results/clientpositive/join31.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join31.q.out (working copy) @@ -87,11 +87,11 @@ Stage: Stage-7 Map Reduce Local Work Alias -> Map Local Tables: - file:/tmp/liyintang/hive_2010-11-04_12-11-13_590_7577887823222105055/-mr-10004 + file:/tmp/sdong/hive_2011-02-09_02-31-01_072_679848360386404631/-mr-10004 Fetch Operator limit: -1 Alias -> Map Local Operator Tree: - file:/tmp/liyintang/hive_2010-11-04_12-11-13_590_7577887823222105055/-mr-10004 + file:/tmp/sdong/hive_2011-02-09_02-31-01_072_679848360386404631/-mr-10004 HashTable Sink Operator condition expressions: 0 {_col0} @@ -105,7 +105,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/liyintang/hive_2010-11-04_12-11-13_590_7577887823222105055/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-31-01_072_679848360386404631/-mr-10002 Map Join Operator condition map: Inner Join 0 to 1 @@ -130,7 +130,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - file:/tmp/liyintang/hive_2010-11-04_12-11-13_590_7577887823222105055/-mr-10003 + file:/tmp/sdong/hive_2011-02-09_02-31-01_072_679848360386404631/-mr-10003 Select Operator expressions: expr: _col0 @@ -193,7 +193,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Stage: Stage-0 Move Operator @@ -203,7 +203,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Stage: Stage-4 Stats-Aggr Operator @@ -286,11 +286,11 @@ PREHOOK: query: select * from dest_j1 x order by x.key PREHOOK: type: QUERY PREHOOK: Input: default@dest_j1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_12-11-35_085_715748887928903684/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-31-17_435_1501783939879230542/-mr-10000 POSTHOOK: query: select * from dest_j1 x order by x.key POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_j1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_12-11-35_085_715748887928903684/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-31-17_435_1501783939879230542/-mr-10000 POSTHOOK: Lineage: dest_j1.cnt EXPRESSION [(src1)x.null, (src)y.null, ] POSTHOOK: Lineage: dest_j1.key SIMPLE [(src1)x.FieldSchema(name:key, type:string, comment:default), ] 128 1 Index: ql/src/test/results/clientpositive/input36.q.out =================================================================== --- ql/src/test/results/clientpositive/input36.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input36.q.out (working copy) @@ -72,7 +72,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Conditional Operator @@ -81,7 +81,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-30-02_540_6872300994248122833/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-22-33_370_3486559669366996353/-ext-10000 Stage: Stage-0 Move Operator @@ -91,7 +91,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -99,7 +99,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-30-02_540_6872300994248122833/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-22-33_370_3486559669366996353/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -107,7 +107,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM ( @@ -135,11 +135,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-30-08_898_294923407373116493/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-22-38_265_1221245977774620516/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-30-08_898_294923407373116493/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-22-38_265_1221245977774620516/-mr-10000 POSTHOOK: Lineage: dest1.key SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] NULL NULL Index: ql/src/test/results/clientpositive/auto_join7.q.out =================================================================== --- ql/src/test/results/clientpositive/auto_join7.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/auto_join7.q.out (working copy) @@ -214,7 +214,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -224,7 +224,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -281,11 +281,11 @@ PREHOOK: query: SELECT sum(hash(dest1.c1,dest1.c2,dest1.c3,dest1.c4,dest1.c5,dest1.c6)) FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-15_16-50-22_059_1050419042564302638/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-31-30_618_7002339726716192281/-mr-10000 POSTHOOK: query: SELECT sum(hash(dest1.c1,dest1.c2,dest1.c3,dest1.c4,dest1.c5,dest1.c6)) FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-15_16-50-22_059_1050419042564302638/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-31-30_618_7002339726716192281/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c2 SIMPLE [(src)src1.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c3 EXPRESSION [(src)src2.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/mapreduce3.q.out =================================================================== --- ql/src/test/results/clientpositive/mapreduce3.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/mapreduce3.q.out (working copy) @@ -85,7 +85,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -95,7 +95,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -124,11 +124,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-03-18_643_1313974049756076835/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-05-22_778_4051135309905284729/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-03-18_643_1313974049756076835/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-05-22_778_4051135309905284729/-mr-10000 POSTHOOK: Lineage: dest1.key SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.one SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.ten SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/ctas.q.out =================================================================== --- ql/src/test/results/clientpositive/ctas.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/ctas.q.out (working copy) @@ -6,11 +6,11 @@ PREHOOK: query: select * from nzhang_Tmp PREHOOK: type: QUERY PREHOOK: Input: default@nzhang_tmp -PREHOOK: Output: file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-21-38_152_6607893365576187007/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-02-01_754_3545844512556916408/-mr-10000 POSTHOOK: query: select * from nzhang_Tmp POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_tmp -POSTHOOK: Output: file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-21-38_152_6607893365576187007/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-02-01_754_3545844512556916408/-mr-10000 PREHOOK: query: explain create table nzhang_CTAS1 as select key k, value from src sort by k, value limit 10 PREHOOK: type: CREATETABLE_AS_SELECT POSTHOOK: query: explain create table nzhang_CTAS1 as select key k, value from src sort by k, value limit 10 @@ -64,7 +64,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-21-38_294_2534653608830924093/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-02-01_928_8377626199209067271/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -92,7 +92,7 @@ Move Operator files: hdfs directory: true - destination: pfile:///Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/nzhang_ctas1 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_ctas1 Stage: Stage-3 Create Table Operator: @@ -116,11 +116,11 @@ PREHOOK: query: select * from nzhang_CTAS1 PREHOOK: type: QUERY PREHOOK: Input: default@nzhang_ctas1 -PREHOOK: Output: file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-21-54_890_340708639379092873/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-02-08_723_7092621539773592233/-mr-10000 POSTHOOK: query: select * from nzhang_CTAS1 POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_ctas1 -POSTHOOK: Output: file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-21-54_890_340708639379092873/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-02-08_723_7092621539773592233/-mr-10000 0 val_0 0 val_0 0 val_0 @@ -184,7 +184,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-21-55_113_2975775360233211417/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-02-09_006_4794854030975826627/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -212,7 +212,7 @@ Move Operator files: hdfs directory: true - destination: pfile:///Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/nzhang_ctas2 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_ctas2 Stage: Stage-3 Create Table Operator: @@ -236,11 +236,11 @@ PREHOOK: query: select * from nzhang_ctas2 PREHOOK: type: QUERY PREHOOK: Input: default@nzhang_ctas2 -PREHOOK: Output: file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-22-10_092_5599426394139957980/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-02-19_793_2694600711165664253/-mr-10000 POSTHOOK: query: select * from nzhang_ctas2 POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_ctas2 -POSTHOOK: Output: file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-22-10_092_5599426394139957980/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-02-19_793_2694600711165664253/-mr-10000 0 val_0 0 val_0 0 val_0 @@ -304,7 +304,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-22-10_269_5024522055775704015/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-02-20_093_1555861022176536945/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -332,7 +332,7 @@ Move Operator files: hdfs directory: true - destination: pfile:///Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/nzhang_ctas3 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_ctas3 Stage: Stage-3 Create Table Operator: @@ -357,11 +357,11 @@ PREHOOK: query: select * from nzhang_ctas3 PREHOOK: type: QUERY PREHOOK: Input: default@nzhang_ctas3 -PREHOOK: Output: file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-22-26_253_5950487784027845463/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-02-26_911_8314494011894181020/-mr-10000 POSTHOOK: query: select * from nzhang_ctas3 POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_ctas3 -POSTHOOK: Output: file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-22-26_253_5950487784027845463/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-02-26_911_8314494011894181020/-mr-10000 0.0 val_0_con 0.0 val_0_con 0.0 val_0_con @@ -390,11 +390,11 @@ PREHOOK: query: select * from nzhang_ctas3 PREHOOK: type: QUERY PREHOOK: Input: default@nzhang_ctas3 -PREHOOK: Output: file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-22-26_587_8435204750824479169/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-02-27_336_2184973117524484460/-mr-10000 POSTHOOK: query: select * from nzhang_ctas3 POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_ctas3 -POSTHOOK: Output: file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-22-26_587_8435204750824479169/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-02-27_336_2184973117524484460/-mr-10000 0.0 val_0_con 0.0 val_0_con 0.0 val_0_con @@ -458,7 +458,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-22-26_831_6665219081002226800/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-02-27_669_4469554129896983631/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -486,7 +486,7 @@ Move Operator files: hdfs directory: true - destination: pfile:///Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/nzhang_ctas4 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_ctas4 Stage: Stage-3 Create Table Operator: @@ -511,11 +511,11 @@ PREHOOK: query: select * from nzhang_ctas4 PREHOOK: type: QUERY PREHOOK: Input: default@nzhang_ctas4 -PREHOOK: Output: file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-22-42_599_6843607487274708798/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-02-38_509_6141699546894202290/-mr-10000 POSTHOOK: query: select * from nzhang_ctas4 POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_ctas4 -POSTHOOK: Output: file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-22-42_599_6843607487274708798/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-02-38_509_6141699546894202290/-mr-10000 0 val_0 0 val_0 0 val_0 @@ -569,9 +569,9 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/src [src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [src] Path -> Partition: - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -582,12 +582,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1290111684 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -598,22 +598,22 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1290111684 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src + name: default.src + name: default.src Reduce Operator Tree: Extract Limit File Output Operator compressed: false GlobalTableId: 0 - directory: file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-22-42_827_2917364249718384116/-mr-10002 + directory: file:/tmp/sdong/hive_2011-02-09_02-02-38_846_8613699738245647565/-mr-10002 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -629,7 +629,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-22-42_827_2917364249718384116/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-02-38_846_8613699738245647565/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -645,9 +645,9 @@ type: string Needs Tagging: false Path -> Alias: - file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-22-42_827_2917364249718384116/-mr-10002 [file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-22-42_827_2917364249718384116/-mr-10002] + file:/tmp/sdong/hive_2011-02-09_02-02-38_846_8613699738245647565/-mr-10002 [file:/tmp/sdong/hive_2011-02-09_02-02-38_846_8613699738245647565/-mr-10002] Path -> Partition: - file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-22-42_827_2917364249718384116/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-02-38_846_8613699738245647565/-mr-10002 Partition base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -669,9 +669,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-22-42_827_2917364249718384116/-ext-10001 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-02-38_846_8613699738245647565/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-22-42_827_2917364249718384116/-ext-10001/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-02-38_846_8613699738245647565/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -690,8 +690,8 @@ Move Operator files: hdfs directory: true - source: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-22-42_827_2917364249718384116/-ext-10001 - destination: pfile:///Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/nzhang_ctas5 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-02-38_846_8613699738245647565/-ext-10001 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_ctas5 Stage: Stage-3 Create Table Operator: Index: ql/src/test/results/clientpositive/stats10.q.out =================================================================== --- ql/src/test/results/clientpositive/stats10.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/stats10.q.out (working copy) @@ -60,7 +60,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucket3_1 + name: default.bucket3_1 Stage: Stage-0 Move Operator @@ -72,7 +72,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucket3_1 + name: default.bucket3_1 Stage: Stage-2 Stats-Aggr Operator @@ -123,11 +123,11 @@ PREHOOK: query: select * from bucket3_1 tablesample (bucket 1 out of 2) s where ds = '1' order by key PREHOOK: type: QUERY PREHOOK: Input: default@bucket3_1@ds=1 -PREHOOK: Output: file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_21-59-35_194_6516705847755484921/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-45-03_965_3915629773349365469/-mr-10000 POSTHOOK: query: select * from bucket3_1 tablesample (bucket 1 out of 2) s where ds = '1' order by key POSTHOOK: type: QUERY POSTHOOK: Input: default@bucket3_1@ds=1 -POSTHOOK: Output: file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_21-59-35_194_6516705847755484921/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-45-03_965_3915629773349365469/-mr-10000 POSTHOOK: Lineage: bucket3_1 PARTITION(ds=1).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: bucket3_1 PARTITION(ds=1).value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: bucket3_1 PARTITION(ds=1).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -392,7 +392,7 @@ POSTHOOK: Lineage: bucket3_1 PARTITION(ds=2).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: bucket3_1 PARTITION(ds=2).value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] ABSTRACT SYNTAX TREE: - (TOK_ANALYZE (TOK_TABTYPE bucket3_1 (TOK_PARTSPEC (TOK_PARTVAL ds)))) + (TOK_ANALYZE (TOK_TAB bucket3_1 (TOK_PARTSPEC (TOK_PARTVAL ds)))) STAGE DEPENDENCIES: Stage-0 is a root stage @@ -444,7 +444,7 @@ value string ds string -Detailed Partition Information Partition(values:[1], dbName:default, tableName:bucket3_1, createTime:1290146355, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:int, comment:null), FieldSchema(name:value, type:string, comment:null)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/bucket3_1/ds=1, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:2, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[key], sortCols:[], parameters:{}), parameters:{numFiles=2, transient_lastDdlTime=1290146388, numRows=500, totalSize=5812}) +Detailed Partition Information Partition(values:[1], dbName:default, tableName:bucket3_1, createTime:1297251893, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:int, comment:null), FieldSchema(name:value, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucket3_1/ds=1, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:2, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[key], sortCols:[], parameters:{}), parameters:{numFiles=2, transient_lastDdlTime=1297251912, totalSize=5812, numRows=0}) PREHOOK: query: describe extended bucket3_1 partition (ds='2') PREHOOK: type: DESCTABLE POSTHOOK: query: describe extended bucket3_1 partition (ds='2') @@ -459,7 +459,7 @@ value string ds string -Detailed Partition Information Partition(values:[2], dbName:default, tableName:bucket3_1, createTime:1290146374, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:int, comment:null), FieldSchema(name:value, type:string, comment:null)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/bucket3_1/ds=2, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:2, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[key], sortCols:[], parameters:{}), parameters:{numFiles=2, transient_lastDdlTime=1290146388, numRows=500, totalSize=5812}) +Detailed Partition Information Partition(values:[2], dbName:default, tableName:bucket3_1, createTime:1297251903, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:int, comment:null), FieldSchema(name:value, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucket3_1/ds=2, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:2, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[key], sortCols:[], parameters:{}), parameters:{numFiles=2, transient_lastDdlTime=1297251912, numRows=247, totalSize=5812}) PREHOOK: query: describe extended bucket3_1 PREHOOK: type: DESCTABLE POSTHOOK: query: describe extended bucket3_1 @@ -474,4 +474,4 @@ value string ds string -Detailed Table Information Table(tableName:bucket3_1, dbName:default, owner:heyongqiang, createTime:1290146344, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:int, comment:null), FieldSchema(name:value, type:string, comment:null), FieldSchema(name:ds, type:string, comment:null)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/bucket3_1, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:2, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[key], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null)], parameters:{numPartitions=2, numFiles=4, transient_lastDdlTime=1290146388, numRows=1000, totalSize=11624}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:bucket3_1, dbName:default, owner:sdong, createTime:1297251888, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:int, comment:null), FieldSchema(name:value, type:string, comment:null), FieldSchema(name:ds, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucket3_1, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:2, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[key], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null)], parameters:{numPartitions=2, numFiles=4, transient_lastDdlTime=1297251912, numRows=247, totalSize=11624}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) Index: ql/src/test/results/clientpositive/auto_join17.q.out =================================================================== --- ql/src/test/results/clientpositive/auto_join17.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/auto_join17.q.out (working copy) @@ -95,7 +95,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Local Work: Map Reduce Local Work @@ -107,7 +107,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -179,7 +179,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Local Work: Map Reduce Local Work @@ -258,7 +258,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM src src1 JOIN src src2 ON (src1.key = src2.key) @@ -278,11 +278,11 @@ PREHOOK: query: SELECT sum(hash(dest1.key1,dest1.value1,dest1.key2,dest1.value2)) FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-15_16-46-19_573_2083505126618399043/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-26-04_307_721015208331147819/-mr-10000 POSTHOOK: query: SELECT sum(hash(dest1.key1,dest1.value1,dest1.key2,dest1.value2)) FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-15_16-46-19_573_2083505126618399043/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-26-04_307_721015208331147819/-mr-10000 POSTHOOK: Lineage: dest1.key1 EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.key2 EXPRESSION [(src)src2.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value1 SIMPLE [(src)src1.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/groupby4_map_skew.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby4_map_skew.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby4_map_skew.q.out (working copy) @@ -61,7 +61,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -71,7 +71,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -89,10 +89,10 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-15-56_131_6804042793044840174/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-10-03_089_5997395252198632064/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-15-56_131_6804042793044840174/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-10-03_089_5997395252198632064/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.null, ] 500 Index: ql/src/test/results/clientpositive/groupby7_noskew.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby7_noskew.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby7_noskew.q.out (working copy) @@ -99,7 +99,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -109,7 +109,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-3 Stats-Aggr Operator @@ -117,7 +117,7 @@ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-18-23_922_8552184341646841192/-mr-10004 + file:/tmp/sdong/hive_2011-02-09_02-12-12_237_8918421449629807647/-mr-10004 Reduce Output Operator key expressions: expr: key @@ -161,7 +161,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-1 Move Operator @@ -171,7 +171,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-5 Stats-Aggr Operator @@ -198,11 +198,11 @@ PREHOOK: query: SELECT DEST1.* FROM DEST1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-18-38_217_226143875133827262/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-12-25_150_4563253579926291875/-mr-10000 POSTHOOK: query: SELECT DEST1.* FROM DEST1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-18-38_217_226143875133827262/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-12-25_150_4563253579926291875/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -519,11 +519,11 @@ PREHOOK: query: SELECT DEST2.* FROM DEST2 PREHOOK: type: QUERY PREHOOK: Input: default@dest2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-18-38_684_5084956866699197121/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-12-25_449_8708790639162203641/-mr-10000 POSTHOOK: query: SELECT DEST2.* FROM DEST2 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-18-38_684_5084956866699197121/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-12-25_449_8708790639162203641/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/groupby6_map.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby6_map.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby6_map.q.out (working copy) @@ -67,7 +67,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -77,7 +77,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -97,11 +97,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-17-00_898_5682148816002518734/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-11-03_687_3157661794541457904/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-17-00_898_5682148816002518734/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-11-03_687_3157661794541457904/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] 0 1 Index: ql/src/test/results/clientpositive/merge3.q.out =================================================================== --- ql/src/test/results/clientpositive/merge3.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/merge3.q.out (working copy) @@ -78,9 +78,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-54-52_127_2413179540241952240/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-01_341_7376368752323550345/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-54-52_127_2413179540241952240/-ext-10001/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-01_341_7376368752323550345/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -93,9 +93,9 @@ MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src [merge_src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src [merge_src] Path -> Partition: - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src Partition base file name: merge_src input format: org.apache.hadoop.mapred.TextInputFormat @@ -106,12 +106,12 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src - name merge_src + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src + name default.merge_src serialization.ddl struct merge_src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1290113676 + transient_lastDdlTime 1297249614 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -122,15 +122,15 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src - name merge_src + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src + name default.merge_src serialization.ddl struct merge_src { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1290113676 + transient_lastDdlTime 1297249614 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: merge_src - name: merge_src + name: default.merge_src + name: default.merge_src Stage: Stage-4 Conditional Operator @@ -139,15 +139,15 @@ Move Operator files: hdfs directory: true - source: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-54-52_127_2413179540241952240/-ext-10002 - destination: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-54-52_127_2413179540241952240/-ext-10001 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-01_341_7376368752323550345/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-01_341_7376368752323550345/-ext-10001 Stage: Stage-0 Move Operator files: hdfs directory: true - source: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-54-52_127_2413179540241952240/-ext-10001 - destination: pfile:///Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src2 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-01_341_7376368752323550345/-ext-10001 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src2 Stage: Stage-5 Create Table Operator: @@ -163,11 +163,11 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-54-52_127_2413179540241952240/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-01_341_7376368752323550345/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-54-52_127_2413179540241952240/-ext-10001 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-01_341_7376368752323550345/-ext-10001 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -181,9 +181,9 @@ MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-54-52_127_2413179540241952240/-ext-10002 [pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-54-52_127_2413179540241952240/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-01_341_7376368752323550345/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-01_341_7376368752323550345/-ext-10002] Path -> Partition: - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-54-52_127_2413179540241952240/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-01_341_7376368752323550345/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -217,11 +217,11 @@ PREHOOK: query: select * from merge_src2 PREHOOK: type: QUERY PREHOOK: Input: default@merge_src2 -PREHOOK: Output: file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-55-09_570_5014264450775842045/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-07-08_361_4973669336299136243/-mr-10000 POSTHOOK: query: select * from merge_src2 POSTHOOK: type: QUERY POSTHOOK: Input: default@merge_src2 -POSTHOOK: Output: file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-55-09_570_5014264450775842045/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-07-08_361_4973669336299136243/-mr-10000 POSTHOOK: Lineage: merge_src_part PARTITION(ds=2008-04-08).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: merge_src_part PARTITION(ds=2008-04-08).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: merge_src_part PARTITION(ds=2008-04-09).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] @@ -2285,9 +2285,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-09_984_4986210984396331402/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-08_732_5821031648815481012/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-09_984_4986210984396331402/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-08_732_5821031648815481012/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -2297,24 +2297,24 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part2 - name merge_src_part2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part2 + name default.merge_src_part2 partition_columns ds serialization.ddl struct merge_src_part2 { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1290113709 + transient_lastDdlTime 1297249628 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: merge_src_part2 + name: default.merge_src_part2 TotalFiles: 1 GatherStats: true MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part/ds=2008-04-08 [merge_src_part] - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part/ds=2008-04-09 [merge_src_part] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part/ds=2008-04-08 [merge_src_part] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part/ds=2008-04-09 [merge_src_part] Path -> Partition: - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part/ds=2008-04-08 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part/ds=2008-04-08 Partition base file name: ds=2008-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -2327,8 +2327,8 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part - name merge_src_part + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part/ds=2008-04-08 + name default.merge_src_part numFiles 4 numPartitions 2 numRows 2000 @@ -2337,7 +2337,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 23248 - transient_lastDdlTime 1290113692 + transient_lastDdlTime 1297249621 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2348,8 +2348,8 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part - name merge_src_part + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part + name default.merge_src_part numFiles 4 numPartitions 2 numRows 2000 @@ -2358,11 +2358,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 23248 - transient_lastDdlTime 1290113692 + transient_lastDdlTime 1297249621 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: merge_src_part - name: merge_src_part - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part/ds=2008-04-09 + name: default.merge_src_part + name: default.merge_src_part + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part/ds=2008-04-09 Partition base file name: ds=2008-04-09 input format: org.apache.hadoop.mapred.TextInputFormat @@ -2375,8 +2375,8 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part - name merge_src_part + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part/ds=2008-04-09 + name default.merge_src_part numFiles 4 numPartitions 2 numRows 2000 @@ -2385,7 +2385,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 23248 - transient_lastDdlTime 1290113692 + transient_lastDdlTime 1297249621 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2396,8 +2396,8 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part - name merge_src_part + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part + name default.merge_src_part numFiles 4 numPartitions 2 numRows 2000 @@ -2406,10 +2406,10 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 23248 - transient_lastDdlTime 1290113692 + transient_lastDdlTime 1297249621 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: merge_src_part - name: merge_src_part + name: default.merge_src_part + name: default.merge_src_part Stage: Stage-5 Conditional Operator @@ -2418,8 +2418,8 @@ Move Operator files: hdfs directory: true - source: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-09_984_4986210984396331402/-ext-10002 - destination: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-09_984_4986210984396331402/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-08_732_5821031648815481012/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-08_732_5821031648815481012/-ext-10000 Stage: Stage-0 Move Operator @@ -2427,7 +2427,7 @@ partition: ds replace: true - source: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-09_984_4986210984396331402/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-08_732_5821031648815481012/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -2437,29 +2437,29 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part2 - name merge_src_part2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part2 + name default.merge_src_part2 partition_columns ds serialization.ddl struct merge_src_part2 { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1290113709 + transient_lastDdlTime 1297249628 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: merge_src_part2 - tmp directory: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-09_984_4986210984396331402/-ext-10001 + name: default.merge_src_part2 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-08_732_5821031648815481012/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-09_984_4986210984396331402/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-08_732_5821031648815481012/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-09_984_4986210984396331402/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-08_732_5821031648815481012/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-09_984_4986210984396331402/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-08_732_5821031648815481012/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -2470,23 +2470,23 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part2 - name merge_src_part2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part2 + name default.merge_src_part2 partition_columns ds serialization.ddl struct merge_src_part2 { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1290113709 + transient_lastDdlTime 1297249628 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: merge_src_part2 + name: default.merge_src_part2 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-09_984_4986210984396331402/-ext-10002 [pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-09_984_4986210984396331402/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-08_732_5821031648815481012/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-08_732_5821031648815481012/-ext-10002] Path -> Partition: - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-09_984_4986210984396331402/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-08_732_5821031648815481012/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -2497,13 +2497,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part2 - name merge_src_part2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part2 + name default.merge_src_part2 partition_columns ds serialization.ddl struct merge_src_part2 { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1290113709 + transient_lastDdlTime 1297249628 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -2514,16 +2514,16 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part2 - name merge_src_part2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part2 + name default.merge_src_part2 partition_columns ds serialization.ddl struct merge_src_part2 { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1290113709 + transient_lastDdlTime 1297249628 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: merge_src_part2 - name: merge_src_part2 + name: default.merge_src_part2 + name: default.merge_src_part2 PREHOOK: query: insert overwrite table merge_src_part2 partition(ds) @@ -2567,12 +2567,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@merge_src_part2@ds=2008-04-08 PREHOOK: Input: default@merge_src_part2@ds=2008-04-09 -PREHOOK: Output: file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-55-29_875_778506553533012381/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-07-19_396_5677313120298606805/-mr-10000 POSTHOOK: query: select * from merge_src_part2 where ds is not null POSTHOOK: type: QUERY POSTHOOK: Input: default@merge_src_part2@ds=2008-04-08 POSTHOOK: Input: default@merge_src_part2@ds=2008-04-09 -POSTHOOK: Output: file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-55-29_875_778506553533012381/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-07-19_396_5677313120298606805/-mr-10000 POSTHOOK: Lineage: merge_src_part PARTITION(ds=2008-04-08).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: merge_src_part PARTITION(ds=2008-04-08).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: merge_src_part PARTITION(ds=2008-04-09).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] @@ -4676,10 +4676,10 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part/ds=2008-04-08 [s:merge_src_part] - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part/ds=2008-04-09 [s:merge_src_part] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part/ds=2008-04-08 [s:merge_src_part] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part/ds=2008-04-09 [s:merge_src_part] Path -> Partition: - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part/ds=2008-04-08 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part/ds=2008-04-08 Partition base file name: ds=2008-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -4692,8 +4692,8 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part - name merge_src_part + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part/ds=2008-04-08 + name default.merge_src_part numFiles 4 numPartitions 2 numRows 2000 @@ -4702,7 +4702,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 23248 - transient_lastDdlTime 1290113692 + transient_lastDdlTime 1297249621 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -4713,8 +4713,8 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part - name merge_src_part + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part + name default.merge_src_part numFiles 4 numPartitions 2 numRows 2000 @@ -4723,11 +4723,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 23248 - transient_lastDdlTime 1290113692 + transient_lastDdlTime 1297249621 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: merge_src_part - name: merge_src_part - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part/ds=2008-04-09 + name: default.merge_src_part + name: default.merge_src_part + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part/ds=2008-04-09 Partition base file name: ds=2008-04-09 input format: org.apache.hadoop.mapred.TextInputFormat @@ -4740,8 +4740,8 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part - name merge_src_part + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part/ds=2008-04-09 + name default.merge_src_part numFiles 4 numPartitions 2 numRows 2000 @@ -4750,7 +4750,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 23248 - transient_lastDdlTime 1290113692 + transient_lastDdlTime 1297249621 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -4761,8 +4761,8 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part - name merge_src_part + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part + name default.merge_src_part numFiles 4 numPartitions 2 numRows 2000 @@ -4771,10 +4771,10 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 23248 - transient_lastDdlTime 1290113692 + transient_lastDdlTime 1297249621 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: merge_src_part - name: merge_src_part + name: default.merge_src_part + name: default.merge_src_part Reduce Operator Tree: Extract Select Operator @@ -4789,9 +4789,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-31_490_2124793241058013369/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-20_171_468738472396102289/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-31_490_2124793241058013369/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-20_171_468738472396102289/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -4801,15 +4801,15 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part2 - name merge_src_part2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part2 + name default.merge_src_part2 partition_columns ds serialization.ddl struct merge_src_part2 { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1290113731 + transient_lastDdlTime 1297249640 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: merge_src_part2 + name: default.merge_src_part2 TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -4821,8 +4821,8 @@ Move Operator files: hdfs directory: true - source: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-31_490_2124793241058013369/-ext-10002 - destination: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-31_490_2124793241058013369/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-20_171_468738472396102289/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-20_171_468738472396102289/-ext-10000 Stage: Stage-0 Move Operator @@ -4830,7 +4830,7 @@ partition: ds replace: true - source: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-31_490_2124793241058013369/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-20_171_468738472396102289/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -4840,29 +4840,29 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part2 - name merge_src_part2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part2 + name default.merge_src_part2 partition_columns ds serialization.ddl struct merge_src_part2 { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1290113731 + transient_lastDdlTime 1297249640 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: merge_src_part2 - tmp directory: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-31_490_2124793241058013369/-ext-10001 + name: default.merge_src_part2 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-20_171_468738472396102289/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-31_490_2124793241058013369/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-20_171_468738472396102289/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-31_490_2124793241058013369/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-20_171_468738472396102289/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-31_490_2124793241058013369/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-20_171_468738472396102289/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -4873,23 +4873,23 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part2 - name merge_src_part2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part2 + name default.merge_src_part2 partition_columns ds serialization.ddl struct merge_src_part2 { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1290113731 + transient_lastDdlTime 1297249640 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: merge_src_part2 + name: default.merge_src_part2 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-31_490_2124793241058013369/-ext-10002 [pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-31_490_2124793241058013369/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-20_171_468738472396102289/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-20_171_468738472396102289/-ext-10002] Path -> Partition: - pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/scratchdir/hive_2010-11-18_12-55-31_490_2124793241058013369/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-07-20_171_468738472396102289/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -4900,13 +4900,13 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part2 - name merge_src_part2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part2 + name default.merge_src_part2 partition_columns ds serialization.ddl struct merge_src_part2 { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1290113731 + transient_lastDdlTime 1297249640 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -4917,16 +4917,16 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/merge_src_part2 - name merge_src_part2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/merge_src_part2 + name default.merge_src_part2 partition_columns ds serialization.ddl struct merge_src_part2 { string key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1290113731 + transient_lastDdlTime 1297249640 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: merge_src_part2 - name: merge_src_part2 + name: default.merge_src_part2 + name: default.merge_src_part2 PREHOOK: query: from (select * from merge_src_part where ds is not null distribute by ds) s insert overwrite table merge_src_part2 partition(ds) @@ -4977,12 +4977,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@merge_src_part2@ds=2008-04-08 PREHOOK: Input: default@merge_src_part2@ds=2008-04-09 -PREHOOK: Output: file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-55-56_157_6737432571027363960/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-07-27_922_7708952437979958380/-mr-10000 POSTHOOK: query: select * from merge_src_part2 where ds is not null POSTHOOK: type: QUERY POSTHOOK: Input: default@merge_src_part2@ds=2008-04-08 POSTHOOK: Input: default@merge_src_part2@ds=2008-04-09 -POSTHOOK: Output: file:/var/folders/6g/6grtCwPMEf4sqHUPpy6xQG9ByHg/-Tmp-/heyongqiang/hive_2010-11-18_12-55-56_157_6737432571027363960/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-07-27_922_7708952437979958380/-mr-10000 POSTHOOK: Lineage: merge_src_part PARTITION(ds=2008-04-08).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: merge_src_part PARTITION(ds=2008-04-08).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: merge_src_part PARTITION(ds=2008-04-09).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/udtf_explode.q.out =================================================================== --- ql/src/test/results/clientpositive/udtf_explode.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/udtf_explode.q.out (working copy) @@ -38,9 +38,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/nzhang/hive_2010-09-15_17-34-12_472_461078458690479492/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_04-12-53_698_7493457470860666483/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/nzhang/hive_2010-09-15_17-34-12_472_461078458690479492/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_04-12-53_698_7493457470860666483/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -53,9 +53,9 @@ MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src [src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [src] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -66,12 +66,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284588338 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -82,15 +82,15 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284588338 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src + name: default.src + name: default.src Stage: Stage-0 Fetch Operator @@ -133,9 +133,9 @@ type: int Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src [a:src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [a:src] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -146,12 +146,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284588338 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -162,15 +162,15 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284588338 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src + name: default.src + name: default.src Reduce Operator Tree: Extract Limit @@ -191,7 +191,7 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/nzhang/hive_2010-09-15_17-34-12_511_3699113220853694956/-mr-10002 + directory: file:/tmp/sdong/hive_2011-02-09_04-12-53_788_7999727653207747234/-mr-10002 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -207,7 +207,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-15_17-34-12_511_3699113220853694956/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_04-12-53_788_7999727653207747234/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -222,9 +222,9 @@ type: bigint Needs Tagging: false Path -> Alias: - file:/tmp/nzhang/hive_2010-09-15_17-34-12_511_3699113220853694956/-mr-10002 [file:/tmp/nzhang/hive_2010-09-15_17-34-12_511_3699113220853694956/-mr-10002] + file:/tmp/sdong/hive_2011-02-09_04-12-53_788_7999727653207747234/-mr-10002 [file:/tmp/sdong/hive_2011-02-09_04-12-53_788_7999727653207747234/-mr-10002] Path -> Partition: - file:/tmp/nzhang/hive_2010-09-15_17-34-12_511_3699113220853694956/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_04-12-53_788_7999727653207747234/-mr-10002 Partition base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -260,9 +260,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/nzhang/hive_2010-09-15_17-34-12_511_3699113220853694956/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_04-12-53_788_7999727653207747234/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/nzhang/hive_2010-09-15_17-34-12_511_3699113220853694956/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_04-12-53_788_7999727653207747234/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -282,33 +282,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/nzhang/hive_2010-09-15_17-34-12_563_1523905309826369917/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-12-53_883_2577961323394634901/-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/nzhang/hive_2010-09-15_17-34-12_563_1523905309826369917/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-12-53_883_2577961323394634901/-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/nzhang/hive_2010-09-15_17-34-16_104_3527117414764259158/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-12-57_178_5870075109364012804/-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/nzhang/hive_2010-09-15_17-34-16_104_3527117414764259158/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-12-57_178_5870075109364012804/-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/nzhang/hive_2010-09-15_17-34-19_634_506308003652349415/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-13-00_465_8853241501742292338/-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/nzhang/hive_2010-09-15_17-34-19_634_506308003652349415/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-13-00_465_8853241501742292338/-mr-10000 1 1 2 1 3 1 Index: ql/src/test/results/clientpositive/join5.q.out =================================================================== --- ql/src/test/results/clientpositive/join5.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join5.q.out (working copy) @@ -158,7 +158,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -168,7 +168,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -213,11 +213,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-43-41_389_6784091755620486642/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-34-25_995_4939940688774626504/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-43-41_389_6784091755620486642/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-34-25_995_4939940688774626504/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c2 SIMPLE [(src)src1.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c3 EXPRESSION [(src)src2.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/outer_join_ppr.q.out =================================================================== --- ql/src/test/results/clientpositive/outer_join_ppr.q.out (revision 1068243) +++ 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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src [a] - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [b] - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [b] - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [b] - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [b] + 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] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1285105506 + transient_lastDdlTime 1297243148 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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1285105506 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + 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 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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1285105497 + transient_lastDdlTime 1297243142 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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1285105497 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1285105497 + transient_lastDdlTime 1297243142 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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1285105497 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + 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 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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1285105497 + transient_lastDdlTime 1297243142 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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1285105497 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + 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 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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1285105497 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -263,16 +263,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1285105497 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Join Operator condition map: @@ -304,9 +304,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/nzhang/hive_2010-09-21_14-45-35_793_1387048173001883243/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-15-30_550_3943838894176705481/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/nzhang/hive_2010-09-21_14-45-35_793_1387048173001883243/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-15-30_550_3943838894176705481/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -336,7 +336,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/nzhang/hive_2010-09-21_14-45-36_074_492288488901989767/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-15-30_712_6151276300513275300/-mr-10000 POSTHOOK: query: FROM src a FULL OUTER JOIN @@ -350,7 +350,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/nzhang/hive_2010-09-21_14-45-36_074_492288488901989767/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-15-30_712_6151276300513275300/-mr-10000 17 val_17 17 val_17 17 val_17 17 val_17 18 val_18 18 val_18 @@ -432,13 +432,13 @@ type: string Needs Tagging: true Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src [a] - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [b] - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [b] - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [b] - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [b] + 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] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -449,12 +449,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1285105506 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -465,16 +465,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1285105506 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + 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 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -488,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1285105497 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -505,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1285105497 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -529,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1285105497 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -546,17 +546,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1285105497 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + 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 Partition base file name: hr=11 input format: org.apache.hadoop.mapred.TextInputFormat @@ -570,13 +570,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1285105497 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -587,17 +587,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1285105497 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + 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 Partition base file name: hr=12 input format: org.apache.hadoop.mapred.TextInputFormat @@ -611,13 +611,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1285105497 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -628,16 +628,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1285105497 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Join Operator condition map: @@ -666,9 +666,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/nzhang/hive_2010-09-21_14-45-43_282_4537623029582452473/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-15-36_262_9051841206180258360/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/nzhang/hive_2010-09-21_14-45-43_282_4537623029582452473/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-15-36_262_9051841206180258360/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -698,7 +698,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/nzhang/hive_2010-09-21_14-45-43_544_7990319034982476830/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-15-36_420_9173368704959240796/-mr-10000 POSTHOOK: query: FROM src a FULL OUTER JOIN @@ -712,7 +712,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/nzhang/hive_2010-09-21_14-45-43_544_7990319034982476830/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-15-36_420_9173368704959240796/-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/auto_join26.q.out =================================================================== --- ql/src/test/results/clientpositive/auto_join26.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/auto_join26.q.out (working copy) @@ -93,7 +93,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/liyintang/hive_2010-12-06_15-13-36_873_2449071063337197304/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_01-30-08_551_1255206051531903961/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -137,7 +137,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Stage: Stage-0 Move Operator @@ -147,7 +147,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Stage: Stage-3 Stats-Aggr Operator @@ -291,11 +291,11 @@ PREHOOK: query: select * from dest_j1 x order by x.key PREHOOK: type: QUERY PREHOOK: Input: default@dest_j1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-12-06_15-13-51_429_1293784409064103219/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-30-18_567_6509620262565904839/-mr-10000 POSTHOOK: query: select * from dest_j1 x order by x.key POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_j1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-12-06_15-13-51_429_1293784409064103219/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-30-18_567_6509620262565904839/-mr-10000 POSTHOOK: Lineage: dest_j1.cnt EXPRESSION [(src1)x.null, (src)y.null, ] POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src1)x.FieldSchema(name:key, type:string, comment:default), ] 66 1 Index: ql/src/test/results/clientpositive/union18.q.out =================================================================== --- ql/src/test/results/clientpositive/union18.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/union18.q.out (working copy) @@ -88,7 +88,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_18-18-37_542_6761558048897189363/-mr-10004 + file:/tmp/sdong/hive_2011-02-09_04-16-21_171_6110539064524285041/-mr-10004 Union Select Operator expressions: @@ -104,7 +104,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Select Operator expressions: expr: _col0 @@ -121,8 +121,8 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 - file:/tmp/nzhang/hive_2010-09-14_18-18-37_542_6761558048897189363/-mr-10007 + name: default.dest2 + file:/tmp/sdong/hive_2011-02-09_04-16-21_171_6110539064524285041/-mr-10007 Union Select Operator expressions: @@ -138,7 +138,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Select Operator expressions: expr: _col0 @@ -155,7 +155,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-7 Conditional Operator @@ -164,7 +164,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_18-18-37_542_6761558048897189363/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_04-16-21_171_6110539064524285041/-ext-10000 Stage: Stage-0 Move Operator @@ -174,7 +174,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-4 Stats-Aggr Operator @@ -182,7 +182,7 @@ Stage: Stage-5 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_18-18-37_542_6761558048897189363/-ext-10005 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_04-16-21_171_6110539064524285041/-ext-10005 File Output Operator compressed: false GlobalTableId: 0 @@ -190,7 +190,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-11 Conditional Operator @@ -199,7 +199,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_18-18-37_542_6761558048897189363/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_04-16-21_171_6110539064524285041/-ext-10002 Stage: Stage-1 Move Operator @@ -209,7 +209,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-8 Stats-Aggr Operator @@ -217,7 +217,7 @@ Stage: Stage-9 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_18-18-37_542_6761558048897189363/-ext-10006 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_04-16-21_171_6110539064524285041/-ext-10006 File Output Operator compressed: false GlobalTableId: 0 @@ -225,7 +225,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-12 Map Reduce @@ -274,11 +274,11 @@ PREHOOK: query: SELECT DEST1.* FROM DEST1 SORT BY DEST1.key, DEST1.value PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-18-59_320_7540698004597928372/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-16-33_083_4855686295734355754/-mr-10000 POSTHOOK: query: SELECT DEST1.* FROM DEST1 SORT BY DEST1.key, DEST1.value POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-18-59_320_7540698004597928372/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-16-33_083_4855686295734355754/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)s2.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)s1.null, (src)s2.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)s2.FieldSchema(name:key, type:string, comment:default), ] @@ -788,11 +788,11 @@ PREHOOK: query: SELECT DEST2.* FROM DEST2 SORT BY DEST2.key, DEST2.val1, DEST2.val2 PREHOOK: type: QUERY PREHOOK: Input: default@dest2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-19-02_936_6629428561300506578/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-16-36_522_7863591703141216679/-mr-10000 POSTHOOK: query: SELECT DEST2.* FROM DEST2 SORT BY DEST2.key, DEST2.val1, DEST2.val2 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-19-02_936_6629428561300506578/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-16-36_522_7863591703141216679/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)s2.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)s1.null, (src)s2.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)s2.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/input31.q.out =================================================================== --- ql/src/test/results/clientpositive/input31.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input31.q.out (working copy) @@ -76,7 +76,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tst_dest31 + name: default.tst_dest31 Stage: Stage-0 Move Operator @@ -86,7 +86,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: tst_dest31 + name: default.tst_dest31 Stage: Stage-2 Stats-Aggr Operator @@ -106,10 +106,10 @@ PREHOOK: query: select * from tst_dest31 PREHOOK: type: QUERY PREHOOK: Input: default@tst_dest31 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-29-26_305_5661069967494933383/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-22-05_713_8623221126748446266/-mr-10000 POSTHOOK: query: select * from tst_dest31 POSTHOOK: type: QUERY POSTHOOK: Input: default@tst_dest31 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-29-26_305_5661069967494933383/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-22-05_713_8623221126748446266/-mr-10000 POSTHOOK: Lineage: tst_dest31.a EXPRESSION [(srcbucket)srcbucket.null, ] 493 Index: ql/src/test/results/clientpositive/udf_reverse.q.out =================================================================== --- ql/src/test/results/clientpositive/udf_reverse.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/udf_reverse.q.out (working copy) @@ -50,7 +50,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Conditional Operator @@ -59,7 +59,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_18-07-56_504_5735007519186185582/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_04-06-17_199_7546742498927485713/-ext-10000 Stage: Stage-0 Move Operator @@ -69,7 +69,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -77,7 +77,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_18-07-56_504_5735007519186185582/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_04-06-17_199_7546742498927485713/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -85,7 +85,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM src1 INSERT OVERWRITE TABLE dest1 SELECT reverse(src1.value) @@ -100,11 +100,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-08-02_955_1225176762104026693/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-06-21_938_3524617137836765649/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-08-02_955_1225176762104026693/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-06-21_938_3524617137836765649/-mr-10000 POSTHOOK: Lineage: dest1.len EXPRESSION [(src1)src1.FieldSchema(name:value, type:string, comment:default), ] 832_lav @@ -161,10 +161,10 @@ PREHOOK: query: SELECT count(1) FROM dest1 WHERE reverse(dest1.name) = _UTF-8 0xE993AEE982B5 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-08-04_622_5813029493421295737/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-06-23_402_2534957051664592779/-mr-10000 POSTHOOK: query: SELECT count(1) FROM dest1 WHERE reverse(dest1.name) = _UTF-8 0xE993AEE982B5 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_18-08-04_622_5813029493421295737/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-06-23_402_2534957051664592779/-mr-10000 POSTHOOK: Lineage: dest1.len EXPRESSION [(src1)src1.FieldSchema(name:value, type:string, comment:default), ] 1 Index: ql/src/test/results/clientpositive/auto_join2.q.out =================================================================== --- ql/src/test/results/clientpositive/auto_join2.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/auto_join2.q.out (working copy) @@ -141,7 +141,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j2 + name: default.dest_j2 Local Work: Map Reduce Local Work @@ -153,7 +153,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j2 + name: default.dest_j2 Stage: Stage-3 Stats-Aggr Operator @@ -215,7 +215,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j2 + name: default.dest_j2 Local Work: Map Reduce Local Work @@ -280,7 +280,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j2 + name: default.dest_j2 Stage: Stage-15 Map Reduce Local Work @@ -394,11 +394,11 @@ PREHOOK: query: SELECT sum(hash(dest_j2.key,dest_j2.value)) FROM dest_j2 PREHOOK: type: QUERY PREHOOK: Input: default@dest_j2 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-15_16-47-22_907_3066399957536170228/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-27-12_994_6181173946199980990/-mr-10000 POSTHOOK: query: SELECT sum(hash(dest_j2.key,dest_j2.value)) FROM dest_j2 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_j2 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-15_16-47-22_907_3066399957536170228/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-27-12_994_6181173946199980990/-mr-10000 POSTHOOK: Lineage: dest_j2.key EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j2.value SIMPLE [(src)src3.FieldSchema(name:value, type:string, comment:default), ] 33815990627 Index: ql/src/test/results/clientpositive/binary_output_format.q.out =================================================================== --- ql/src/test/results/clientpositive/binary_output_format.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/binary_output_format.q.out (working copy) @@ -89,9 +89,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_15-49-49_443_6434706686449438212/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-09_921_1550398317801890655/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_15-49-49_443_6434706686449438212/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-09_921_1550398317801890655/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveBinaryOutputFormat @@ -101,23 +101,23 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveBinaryOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { string mydata} serialization.format 1 serialization.last.column.takes.rest true serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504589 + transient_lastDdlTime 1297244829 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: true MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src [src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [src] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -128,12 +128,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284504429 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -144,15 +144,15 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284504429 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src + name: default.src + name: default.src Stage: Stage-5 Conditional Operator @@ -161,14 +161,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_15-49-49_443_6434706686449438212/-ext-10002 - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_15-49-49_443_6434706686449438212/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-09_921_1550398317801890655/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-09_921_1550398317801890655/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_15-49-49_443_6434706686449438212/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-09_921_1550398317801890655/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveBinaryOutputFormat @@ -178,29 +178,29 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveBinaryOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { string mydata} serialization.format 1 serialization.last.column.takes.rest true serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504589 + transient_lastDdlTime 1297244829 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - tmp directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_15-49-49_443_6434706686449438212/-ext-10001 + name: default.dest1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-09_921_1550398317801890655/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_15-49-49_443_6434706686449438212/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-09_921_1550398317801890655/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_15-49-49_443_6434706686449438212/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-09_921_1550398317801890655/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_15-49-49_443_6434706686449438212/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-09_921_1550398317801890655/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -211,23 +211,23 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveBinaryOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { string mydata} serialization.format 1 serialization.last.column.takes.rest true serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504589 + transient_lastDdlTime 1297244829 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_15-49-49_443_6434706686449438212/-ext-10002 [pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_15-49-49_443_6434706686449438212/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-09_921_1550398317801890655/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-09_921_1550398317801890655/-ext-10002] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_15-49-49_443_6434706686449438212/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-47-09_921_1550398317801890655/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -238,13 +238,13 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveBinaryOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { string mydata} serialization.format 1 serialization.last.column.takes.rest true serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504589 + transient_lastDdlTime 1297244829 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -255,16 +255,16 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveBinaryOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { string mydata} serialization.format 1 serialization.last.column.takes.rest true serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504589 + transient_lastDdlTime 1297244829 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - name: dest1 + name: default.dest1 + name: default.dest1 PREHOOK: query: INSERT OVERWRITE TABLE dest1 @@ -300,12 +300,12 @@ SELECT * FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_15-49-55_383_330923899053574056/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-47-14_823_1314392185528433844/-mr-10000 POSTHOOK: query: -- Test the result SELECT * FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_15-49-55_383_330923899053574056/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-47-14_823_1314392185528433844/-mr-10000 POSTHOOK: Lineage: dest1.mydata SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] 238 val_238 86 val_86 Index: ql/src/test/results/clientpositive/multi_insert.q.out =================================================================== --- ql/src/test/results/clientpositive/multi_insert.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/multi_insert.q.out (working copy) @@ -53,7 +53,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Filter Operator predicate: expr: ((key > 10) and (key < 20)) @@ -72,7 +72,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-0 Move Operator @@ -82,7 +82,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Stage: Stage-3 Stats-Aggr Operator @@ -95,7 +95,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-4 Stats-Aggr Operator @@ -122,11 +122,11 @@ PREHOOK: query: select * from src_multi1 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-06-48_360_7953762035746547555/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-08-47_693_4562139703131111299/-mr-10000 POSTHOOK: query: select * from src_multi1 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-06-48_360_7953762035746547555/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-08-47_693_4562139703131111299/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: src_multi2.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -144,11 +144,11 @@ PREHOOK: query: select * from src_multi2 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-06-51_771_8783183293277206129/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-08-50_976_6811244945529718458/-mr-10000 POSTHOOK: query: select * from src_multi2 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-06-51_771_8783183293277206129/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-08-50_976_6811244945529718458/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: src_multi2.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -217,7 +217,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Filter Operator predicate: expr: ((key > 10) and (key < 20)) @@ -236,7 +236,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-6 Conditional Operator @@ -245,7 +245,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-06-55_632_2674460654496933955/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-08-54_323_2375223642347973937/-ext-10000 Stage: Stage-0 Move Operator @@ -255,7 +255,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Stage: Stage-3 Stats-Aggr Operator @@ -263,7 +263,7 @@ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-06-55_632_2674460654496933955/-ext-10004 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-08-54_323_2375223642347973937/-ext-10004 File Output Operator compressed: false GlobalTableId: 0 @@ -271,7 +271,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Stage: Stage-10 Conditional Operator @@ -280,7 +280,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-06-55_632_2674460654496933955/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-08-54_323_2375223642347973937/-ext-10002 Stage: Stage-1 Move Operator @@ -290,7 +290,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-7 Stats-Aggr Operator @@ -298,7 +298,7 @@ Stage: Stage-8 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-06-55_632_2674460654496933955/-ext-10005 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-08-54_323_2375223642347973937/-ext-10005 File Output Operator compressed: false GlobalTableId: 0 @@ -306,7 +306,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 PREHOOK: query: from src @@ -334,11 +334,11 @@ PREHOOK: query: select * from src_multi1 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-07-03_879_3895728757416914263/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-08-59_648_7111522701013692896/-mr-10000 POSTHOOK: query: select * from src_multi1 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-07-03_879_3895728757416914263/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-08-59_648_7111522701013692896/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] @@ -360,11 +360,11 @@ PREHOOK: query: select * from src_multi2 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-07-07_346_6746106485662953432/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-09-03_151_464516686872789228/-mr-10000 POSTHOOK: query: select * from src_multi2 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-07-07_346_6746106485662953432/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-09-03_151_464516686872789228/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] @@ -435,7 +435,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Filter Operator predicate: expr: ((key > 10) and (key < 20)) @@ -454,7 +454,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-0 Move Operator @@ -464,7 +464,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Stage: Stage-3 Stats-Aggr Operator @@ -477,7 +477,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-4 Stats-Aggr Operator @@ -512,11 +512,11 @@ PREHOOK: query: select * from src_multi1 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-07-18_515_3457355393974663217/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-09-11_575_1110367611231215461/-mr-10000 POSTHOOK: query: select * from src_multi1 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-07-18_515_3457355393974663217/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-09-11_575_1110367611231215461/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -542,11 +542,11 @@ PREHOOK: query: select * from src_multi2 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-07-21_917_512990937016178322/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-09-14_882_8512244343861620815/-mr-10000 POSTHOOK: query: select * from src_multi2 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-07-21_917_512990937016178322/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-09-14_882_8512244343861620815/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -631,7 +631,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Filter Operator predicate: expr: ((key > 10) and (key < 20)) @@ -650,7 +650,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-6 Conditional Operator @@ -659,7 +659,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-07-25_343_7959271322926254276/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-09-18_204_8125962048948753688/-ext-10000 Stage: Stage-0 Move Operator @@ -669,7 +669,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Stage: Stage-3 Stats-Aggr Operator @@ -677,7 +677,7 @@ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-07-25_343_7959271322926254276/-ext-10004 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-09-18_204_8125962048948753688/-ext-10004 File Output Operator compressed: false GlobalTableId: 0 @@ -685,7 +685,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Stage: Stage-10 Conditional Operator @@ -694,7 +694,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-07-25_343_7959271322926254276/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-09-18_204_8125962048948753688/-ext-10002 Stage: Stage-1 Move Operator @@ -704,7 +704,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-7 Stats-Aggr Operator @@ -712,7 +712,7 @@ Stage: Stage-8 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-07-25_343_7959271322926254276/-ext-10005 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-09-18_204_8125962048948753688/-ext-10005 File Output Operator compressed: false GlobalTableId: 0 @@ -720,7 +720,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 PREHOOK: query: from src @@ -756,11 +756,11 @@ PREHOOK: query: select * from src_multi1 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-07-33_918_4809641701424690942/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-09-23_577_494607677917549532/-mr-10000 POSTHOOK: query: select * from src_multi1 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-07-33_918_4809641701424690942/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-09-23_577_494607677917549532/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -790,11 +790,11 @@ PREHOOK: query: select * from src_multi2 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-07-37_380_7772013364074968547/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-09-26_926_2828425247162058899/-mr-10000 POSTHOOK: query: select * from src_multi2 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-07-37_380_7772013364074968547/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-09-26_926_2828425247162058899/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -947,7 +947,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Stage: Stage-0 Move Operator @@ -957,7 +957,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Stage: Stage-3 Stats-Aggr Operator @@ -965,7 +965,7 @@ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_17-07-40_802_8868350862677882659/-mr-10004 + file:/tmp/sdong/hive_2011-02-09_03-09-30_209_7944905662721847199/-mr-10004 Reduce Output Operator key expressions: expr: _col0 @@ -1003,7 +1003,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-1 Move Operator @@ -1013,7 +1013,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-5 Stats-Aggr Operator @@ -1056,11 +1056,11 @@ PREHOOK: query: select * from src_multi1 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-07-53_919_7663690847493758997/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-09-39_516_2016742236855360929/-mr-10000 POSTHOOK: query: select * from src_multi1 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-07-53_919_7663690847493758997/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-09-39_516_2016742236855360929/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -1090,11 +1090,11 @@ PREHOOK: query: select * from src_multi2 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-07-57_490_6080507292036060377/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-09-42_859_6322079044121593532/-mr-10000 POSTHOOK: query: select * from src_multi2 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-07-57_490_6080507292036060377/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-09-42_859_6322079044121593532/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -1258,7 +1258,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Stage: Stage-6 Conditional Operator @@ -1267,7 +1267,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-08-01_023_3963425209968278997/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-09-46_171_6704986012034628155/-ext-10000 Stage: Stage-0 Move Operator @@ -1277,7 +1277,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Stage: Stage-3 Stats-Aggr Operator @@ -1285,7 +1285,7 @@ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-08-01_023_3963425209968278997/-ext-10004 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-09-46_171_6704986012034628155/-ext-10004 File Output Operator compressed: false GlobalTableId: 0 @@ -1293,12 +1293,12 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Stage: Stage-7 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_17-08-01_023_3963425209968278997/-mr-10005 + file:/tmp/sdong/hive_2011-02-09_03-09-46_171_6704986012034628155/-mr-10005 Reduce Output Operator key expressions: expr: _col0 @@ -1336,7 +1336,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-11 Conditional Operator @@ -1345,7 +1345,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-08-01_023_3963425209968278997/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-09-46_171_6704986012034628155/-ext-10002 Stage: Stage-1 Move Operator @@ -1355,7 +1355,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-8 Stats-Aggr Operator @@ -1363,7 +1363,7 @@ Stage: Stage-9 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-08-01_023_3963425209968278997/-ext-10006 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-09-46_171_6704986012034628155/-ext-10006 File Output Operator compressed: false GlobalTableId: 0 @@ -1371,7 +1371,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 PREHOOK: query: from src @@ -1415,11 +1415,11 @@ PREHOOK: query: select * from src_multi1 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-08-14_413_7522438004697427536/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-09-55_647_6081449491896112452/-mr-10000 POSTHOOK: query: select * from src_multi1 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-08-14_413_7522438004697427536/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-09-55_647_6081449491896112452/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -1453,11 +1453,11 @@ PREHOOK: query: select * from src_multi2 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-08-17_953_5778321600107239234/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-09-58_946_8594858739279456374/-mr-10000 POSTHOOK: query: select * from src_multi2 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-08-17_953_5778321600107239234/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-09-58_946_8594858739279456374/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -1623,7 +1623,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Stage: Stage-0 Move Operator @@ -1633,7 +1633,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Stage: Stage-3 Stats-Aggr Operator @@ -1641,7 +1641,7 @@ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_17-08-21_377_1827405192033515593/-mr-10004 + file:/tmp/sdong/hive_2011-02-09_03-10-02_295_4350250257355766549/-mr-10004 Reduce Output Operator key expressions: expr: _col0 @@ -1679,7 +1679,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-1 Move Operator @@ -1689,7 +1689,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-5 Stats-Aggr Operator @@ -1740,11 +1740,11 @@ PREHOOK: query: select * from src_multi1 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-08-34_489_4945629790959108979/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-10-12_368_6739518339715072543/-mr-10000 POSTHOOK: query: select * from src_multi1 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-08-34_489_4945629790959108979/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-10-12_368_6739518339715072543/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -1782,11 +1782,11 @@ PREHOOK: query: select * from src_multi2 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-08-37_914_4018953913282915169/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-10-15_673_6826335674122481143/-mr-10000 POSTHOOK: query: select * from src_multi2 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-08-37_914_4018953913282915169/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-10-15_673_6826335674122481143/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -1966,7 +1966,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Stage: Stage-6 Conditional Operator @@ -1975,7 +1975,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-08-41_433_7001879836883681733/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-10-19_026_968259554925611413/-ext-10000 Stage: Stage-0 Move Operator @@ -1985,7 +1985,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Stage: Stage-3 Stats-Aggr Operator @@ -1993,7 +1993,7 @@ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-08-41_433_7001879836883681733/-ext-10004 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-10-19_026_968259554925611413/-ext-10004 File Output Operator compressed: false GlobalTableId: 0 @@ -2001,12 +2001,12 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Stage: Stage-7 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_17-08-41_433_7001879836883681733/-mr-10005 + file:/tmp/sdong/hive_2011-02-09_03-10-19_026_968259554925611413/-mr-10005 Reduce Output Operator key expressions: expr: _col0 @@ -2044,7 +2044,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-11 Conditional Operator @@ -2053,7 +2053,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-08-41_433_7001879836883681733/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-10-19_026_968259554925611413/-ext-10002 Stage: Stage-1 Move Operator @@ -2063,7 +2063,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-8 Stats-Aggr Operator @@ -2071,7 +2071,7 @@ Stage: Stage-9 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-08-41_433_7001879836883681733/-ext-10006 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-10-19_026_968259554925611413/-ext-10006 File Output Operator compressed: false GlobalTableId: 0 @@ -2079,7 +2079,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 PREHOOK: query: from src @@ -2131,11 +2131,11 @@ PREHOOK: query: select * from src_multi1 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-08-55_889_658737220991587687/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-10-28_583_8268316000867124759/-mr-10000 POSTHOOK: query: select * from src_multi1 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-08-55_889_658737220991587687/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-10-28_583_8268316000867124759/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -2177,11 +2177,11 @@ PREHOOK: query: select * from src_multi2 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-08-59_415_7402581530462627245/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-10-31_890_2211410622340386679/-mr-10000 POSTHOOK: query: select * from src_multi2 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-08-59_415_7402581530462627245/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-10-31_890_2211410622340386679/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -2305,7 +2305,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Filter Operator predicate: expr: ((_col0 > 10) and (_col0 < 20)) @@ -2324,7 +2324,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 null-subquery2:s-subquery2:src TableScan alias: src @@ -2354,7 +2354,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Filter Operator predicate: expr: ((_col0 > 10) and (_col0 < 20)) @@ -2373,7 +2373,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-0 Move Operator @@ -2383,7 +2383,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Stage: Stage-3 Stats-Aggr Operator @@ -2396,7 +2396,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-4 Stats-Aggr Operator @@ -2455,11 +2455,11 @@ PREHOOK: query: select * from src_multi1 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-09-10_720_6010441005119219252/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-10-40_466_2161640805020138591/-mr-10000 POSTHOOK: query: select * from src_multi1 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-09-10_720_6010441005119219252/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-10-40_466_2161640805020138591/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -2519,11 +2519,11 @@ PREHOOK: query: select * from src_multi2 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-09-14_168_2552421292011602066/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-10-43_773_6222783094208078586/-mr-10000 POSTHOOK: query: select * from src_multi2 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-09-14_168_2552421292011602066/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-10-43_773_6222783094208078586/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -2673,7 +2673,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Filter Operator predicate: expr: ((_col0 > 10) and (_col0 < 20)) @@ -2692,7 +2692,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 null-subquery2:s-subquery2:src TableScan alias: src @@ -2722,7 +2722,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Filter Operator predicate: expr: ((_col0 > 10) and (_col0 < 20)) @@ -2741,7 +2741,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-6 Conditional Operator @@ -2750,7 +2750,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-09-17_639_542994900721500417/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-10-47_541_269214157764481726/-ext-10000 Stage: Stage-0 Move Operator @@ -2760,7 +2760,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Stage: Stage-3 Stats-Aggr Operator @@ -2768,7 +2768,7 @@ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-09-17_639_542994900721500417/-ext-10004 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-10-47_541_269214157764481726/-ext-10004 File Output Operator compressed: false GlobalTableId: 0 @@ -2776,7 +2776,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Stage: Stage-10 Conditional Operator @@ -2785,7 +2785,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-09-17_639_542994900721500417/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-10-47_541_269214157764481726/-ext-10002 Stage: Stage-1 Move Operator @@ -2795,7 +2795,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-7 Stats-Aggr Operator @@ -2803,7 +2803,7 @@ Stage: Stage-8 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-09-17_639_542994900721500417/-ext-10005 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-10-47_541_269214157764481726/-ext-10005 File Output Operator compressed: false GlobalTableId: 0 @@ -2811,7 +2811,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 PREHOOK: query: from (select * from src union all select * from src) s @@ -2871,11 +2871,11 @@ PREHOOK: query: select * from src_multi1 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-09-25_884_6431166930291232652/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-10-53_127_5550925454678857117/-mr-10000 POSTHOOK: query: select * from src_multi1 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-09-25_884_6431166930291232652/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-10-53_127_5550925454678857117/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -2939,11 +2939,11 @@ PREHOOK: query: select * from src_multi2 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-09-29_897_6290521718057232673/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-10-56_413_2180781360444197991/-mr-10000 POSTHOOK: query: select * from src_multi2 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-09-29_897_6290521718057232673/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-10-56_413_2180781360444197991/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -3095,7 +3095,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Filter Operator predicate: expr: ((_col0 > 10) and (_col0 < 20)) @@ -3114,7 +3114,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 null-subquery2:s-subquery2:src TableScan alias: src @@ -3144,7 +3144,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Filter Operator predicate: expr: ((_col0 > 10) and (_col0 < 20)) @@ -3163,7 +3163,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-0 Move Operator @@ -3173,7 +3173,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Stage: Stage-3 Stats-Aggr Operator @@ -3186,7 +3186,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-4 Stats-Aggr Operator @@ -3253,11 +3253,11 @@ PREHOOK: query: select * from src_multi1 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-09-41_225_2946007877854426595/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-11-05_009_3024378089577823571/-mr-10000 POSTHOOK: query: select * from src_multi1 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-09-41_225_2946007877854426595/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-11-05_009_3024378089577823571/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -3325,11 +3325,11 @@ PREHOOK: query: select * from src_multi2 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-09-44_726_6586471843451209756/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-11-08_310_2970295344600664024/-mr-10000 POSTHOOK: query: select * from src_multi2 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-09-44_726_6586471843451209756/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-11-08_310_2970295344600664024/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -3495,7 +3495,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Filter Operator predicate: expr: ((_col0 > 10) and (_col0 < 20)) @@ -3514,7 +3514,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 null-subquery2:s-subquery2:src TableScan alias: src @@ -3544,7 +3544,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Filter Operator predicate: expr: ((_col0 > 10) and (_col0 < 20)) @@ -3563,7 +3563,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-6 Conditional Operator @@ -3572,7 +3572,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-09-48_169_7249129799893741096/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-11-11_653_1373204503674940347/-ext-10000 Stage: Stage-0 Move Operator @@ -3582,7 +3582,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Stage: Stage-3 Stats-Aggr Operator @@ -3590,7 +3590,7 @@ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-09-48_169_7249129799893741096/-ext-10004 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-11-11_653_1373204503674940347/-ext-10004 File Output Operator compressed: false GlobalTableId: 0 @@ -3598,7 +3598,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi1 + name: default.src_multi1 Stage: Stage-10 Conditional Operator @@ -3607,7 +3607,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-09-48_169_7249129799893741096/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-11-11_653_1373204503674940347/-ext-10002 Stage: Stage-1 Move Operator @@ -3617,7 +3617,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 Stage: Stage-7 Stats-Aggr Operator @@ -3625,7 +3625,7 @@ Stage: Stage-8 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-09-48_169_7249129799893741096/-ext-10005 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-11-11_653_1373204503674940347/-ext-10005 File Output Operator compressed: false GlobalTableId: 0 @@ -3633,7 +3633,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src_multi2 + name: default.src_multi2 PREHOOK: query: from (select * from src union all select * from src) s @@ -3701,11 +3701,11 @@ PREHOOK: query: select * from src_multi1 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-09-56_473_8688197416844196261/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-11-17_290_1379912254772572576/-mr-10000 POSTHOOK: query: select * from src_multi1 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-09-56_473_8688197416844196261/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-11-17_290_1379912254772572576/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -3777,11 +3777,11 @@ PREHOOK: query: select * from src_multi2 order by key, value PREHOOK: type: QUERY PREHOOK: Input: default@src_multi2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-10-00_115_2198989029090707740/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-11-20_578_6456277961977762277/-mr-10000 POSTHOOK: query: select * from src_multi2 order by key, value POSTHOOK: type: QUERY POSTHOOK: Input: default@src_multi2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-10-00_115_2198989029090707740/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-11-20_578_6456277961977762277/-mr-10000 POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: src_multi1.key SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/input1_limit.q.out =================================================================== --- ql/src/test/results/clientpositive/input1_limit.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input1_limit.q.out (working copy) @@ -91,7 +91,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -101,7 +101,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-3 Stats-Aggr Operator @@ -109,7 +109,7 @@ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-27-43_327_5531352914747684136/-mr-10004 + file:/tmp/sdong/hive_2011-02-09_02-20-40_889_4550114192884197013/-mr-10004 Reduce Output Operator sort order: tag: -1 @@ -135,7 +135,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-1 Move Operator @@ -145,7 +145,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-5 Stats-Aggr Operator @@ -172,11 +172,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-27-57_097_3000842764364386080/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-20-50_135_7376915057191541891/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-27-57_097_3000842764364386080/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-20-50_135_7376915057191541891/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -194,11 +194,11 @@ PREHOOK: query: SELECT dest2.* FROM dest2 PREHOOK: type: QUERY PREHOOK: Input: default@dest2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-27-57_468_4760818015574288815/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-20-50_430_6690260169233823938/-mr-10000 POSTHOOK: query: SELECT dest2.* FROM dest2 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-27-57_468_4760818015574288815/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-20-50_430_6690260169233823938/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/groupby8.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby8.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby8.q.out (working copy) @@ -85,7 +85,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-18-40_304_4606940462728948984/-mr-10004 + file:/tmp/sdong/hive_2011-02-09_02-12-26_203_1598461098140350158/-mr-10004 Reduce Output Operator key expressions: expr: _col0 @@ -129,7 +129,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -139,7 +139,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-4 Stats-Aggr Operator @@ -147,7 +147,7 @@ Stage: Stage-5 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-18-40_304_4606940462728948984/-mr-10005 + file:/tmp/sdong/hive_2011-02-09_02-12-26_203_1598461098140350158/-mr-10005 Reduce Output Operator key expressions: expr: _col0 @@ -191,7 +191,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-1 Move Operator @@ -201,7 +201,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest2 + name: default.dest2 Stage: Stage-6 Stats-Aggr Operator @@ -228,11 +228,11 @@ PREHOOK: query: SELECT DEST1.* FROM DEST1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-18-56_883_5144962281935265521/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-12-39_884_5549044208936203611/-mr-10000 POSTHOOK: query: SELECT DEST1.* FROM DEST1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-18-56_883_5144962281935265521/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-12-39_884_5549044208936203611/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] @@ -549,11 +549,11 @@ PREHOOK: query: SELECT DEST2.* FROM DEST2 PREHOOK: type: QUERY PREHOOK: Input: default@dest2 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-18-57_294_6850699314032102301/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-12-40_192_8663436592426114346/-mr-10000 POSTHOOK: query: SELECT DEST2.* FROM DEST2 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest2 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-18-57_294_6850699314032102301/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-12-40_192_8663436592426114346/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/udf_reflect.q.out =================================================================== --- ql/src/test/results/clientpositive/udf_reflect.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/udf_reflect.q.out (working copy) @@ -66,9 +66,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/nzhang/hive_2010-09-15_17-26-36_357_6265400288274412023/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_04-06-05_140_425317997617093897/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/nzhang/hive_2010-09-15_17-26-36_357_6265400288274412023/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_04-06-05_140_425317997617093897/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -81,9 +81,9 @@ MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src [src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [src] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -94,12 +94,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284588338 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -110,15 +110,15 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284588338 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src + name: default.src + name: default.src Stage: Stage-0 Fetch Operator @@ -135,7 +135,7 @@ FROM src LIMIT 1 PREHOOK: type: QUERY PREHOOK: Input: default@src -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-15_17-26-36_401_5084178290925314023/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-06-05_233_1723077061365048604/-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 +146,5 @@ FROM src LIMIT 1 POSTHOOK: type: QUERY POSTHOOK: Input: default@src -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-15_17-26-36_401_5084178290925314023/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-06-05_233_1723077061365048604/-mr-10000 1 true 3 2 3 2.7182818284590455 1.0 Index: ql/src/test/results/clientpositive/case_sensitivity.q.out =================================================================== --- ql/src/test/results/clientpositive/case_sensitivity.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/case_sensitivity.q.out (working copy) @@ -51,7 +51,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Conditional Operator @@ -60,7 +60,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-01-51_651_73893113624741501/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-54_688_7089273776471671465/-ext-10000 Stage: Stage-0 Move Operator @@ -70,7 +70,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -78,7 +78,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-01-51_651_73893113624741501/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-54_688_7089273776471671465/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -86,7 +86,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM SRC_THRIFT @@ -104,11 +104,11 @@ PREHOOK: query: SELECT DEST1.* FROM Dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-01-57_616_3343383676178573885/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-56-59_475_9120315203450186757/-mr-10000 POSTHOOK: query: SELECT DEST1.* FROM Dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-01-57_616_3343383676178573885/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-56-59_475_9120315203450186757/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src_thrift)src_thrift.FieldSchema(name:lint, type:array, comment:from deserializer), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src_thrift)src_thrift.FieldSchema(name:lintstring, type:array, comment:from deserializer), ] 2 1 Index: ql/src/test/results/clientpositive/groupby2_map_skew.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby2_map_skew.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby2_map_skew.q.out (working copy) @@ -85,7 +85,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-14-27_634_8249679785940336881/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-08-07_312_3164606167372376840/-mr-10002 Reduce Output Operator key expressions: expr: _col0 @@ -136,7 +136,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -146,7 +146,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-3 Stats-Aggr Operator @@ -168,11 +168,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-14-37_566_5462951779954403325/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-08-20_465_8556632125825707816/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-14-37_566_5462951779954403325/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-08-20_465_8556632125825707816/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c2 EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/bucketmapjoin_negative2.q.out =================================================================== --- ql/src/test/results/clientpositive/bucketmapjoin_negative2.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/bucketmapjoin_negative2.q.out (working copy) @@ -129,9 +129,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-27-38_256_1586362839830193186/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-54_064_2437233275304637847/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-27-38_256_1586362839830193186/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-54_064_2437233275304637847/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -141,14 +141,14 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288895258 + transient_lastDdlTime 1297245414 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -156,9 +156,9 @@ Map Reduce Local Work Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin [a] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin [a] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin Partition base file name: srcbucket_mapjoin input format: org.apache.hadoop.mapred.TextInputFormat @@ -170,12 +170,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/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin - name srcbucket_mapjoin + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin + name default.srcbucket_mapjoin serialization.ddl struct srcbucket_mapjoin { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288895253 + transient_lastDdlTime 1297245410 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -187,15 +187,15 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin - name srcbucket_mapjoin + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin + name default.srcbucket_mapjoin serialization.ddl struct srcbucket_mapjoin { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288895253 + transient_lastDdlTime 1297245410 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket_mapjoin - name: srcbucket_mapjoin + name: default.srcbucket_mapjoin + name: default.srcbucket_mapjoin Stage: Stage-5 Conditional Operator @@ -204,14 +204,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-27-38_256_1586362839830193186/-ext-10002 - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-27-38_256_1586362839830193186/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-54_064_2437233275304637847/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-54_064_2437233275304637847/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-27-38_256_1586362839830193186/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-54_064_2437233275304637847/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -221,28 +221,28 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288895258 + transient_lastDdlTime 1297245414 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - tmp directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-27-38_256_1586362839830193186/-ext-10001 + name: default.bucketmapjoin_tmp_result + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-54_064_2437233275304637847/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-27-38_256_1586362839830193186/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-54_064_2437233275304637847/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-27-38_256_1586362839830193186/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-54_064_2437233275304637847/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-27-38_256_1586362839830193186/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-54_064_2437233275304637847/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -253,22 +253,22 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288895258 + transient_lastDdlTime 1297245414 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-27-38_256_1586362839830193186/-ext-10002 [pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-27-38_256_1586362839830193186/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-54_064_2437233275304637847/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-54_064_2437233275304637847/-ext-10002] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_11-27-38_256_1586362839830193186/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-56-54_064_2437233275304637847/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -279,12 +279,12 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288895258 + transient_lastDdlTime 1297245414 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -295,14 +295,14 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288895258 + transient_lastDdlTime 1297245414 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result Index: ql/src/test/results/clientpositive/groupby3_map.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby3_map.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby3_map.q.out (working copy) @@ -155,7 +155,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -165,7 +165,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -211,11 +211,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-15-06_424_4947731759684744412/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-09-01_619_119825932281413763/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-15-06_424_4947731759684744412/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-09-01_619_119825932281413763/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c2 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c3 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/sample7.q.out =================================================================== --- ql/src/test/results/clientpositive/sample7.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/sample7.q.out (working copy) @@ -59,9 +59,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-25-25_949_8398069099491911720/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-39_051_1664237684683384576/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-25-25_949_8398069099491911720/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-39_051_1664237684683384576/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -71,22 +71,22 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510325 + transient_lastDdlTime 1297250919 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: true MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt [s] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt [s] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt Partition base file name: srcbucket0.txt input format: org.apache.hadoop.mapred.TextInputFormat @@ -98,12 +98,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket - name srcbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket + name default.srcbucket serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504426 + transient_lastDdlTime 1297243146 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -115,15 +115,15 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket - name srcbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket + name default.srcbucket serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504426 + transient_lastDdlTime 1297243146 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket - name: srcbucket + name: default.srcbucket + name: default.srcbucket Stage: Stage-5 Conditional Operator @@ -132,14 +132,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-25-25_949_8398069099491911720/-ext-10002 - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-25-25_949_8398069099491911720/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-39_051_1664237684683384576/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-39_051_1664237684683384576/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-25-25_949_8398069099491911720/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-39_051_1664237684683384576/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -149,28 +149,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510325 + transient_lastDdlTime 1297250919 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - tmp directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-25-25_949_8398069099491911720/-ext-10001 + name: default.dest1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-39_051_1664237684683384576/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-25-25_949_8398069099491911720/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-39_051_1664237684683384576/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-25-25_949_8398069099491911720/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-39_051_1664237684683384576/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-25-25_949_8398069099491911720/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-39_051_1664237684683384576/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -181,22 +181,22 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510325 + transient_lastDdlTime 1297250919 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-25-25_949_8398069099491911720/-ext-10002 [pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-25-25_949_8398069099491911720/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-39_051_1664237684683384576/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-39_051_1664237684683384576/-ext-10002] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-25-25_949_8398069099491911720/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-28-39_051_1664237684683384576/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -207,12 +207,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510325 + transient_lastDdlTime 1297250919 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -223,15 +223,15 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510325 + transient_lastDdlTime 1297250919 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - name: dest1 + name: default.dest1 + name: default.dest1 PREHOOK: query: INSERT OVERWRITE TABLE dest1 SELECT s.* @@ -251,11 +251,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-25-31_960_8165631533406459791/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-44_102_8897245504821535607/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-25-31_960_8165631533406459791/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-28-44_102_8897245504821535607/-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 Index: ql/src/test/results/clientpositive/join28.q.out =================================================================== --- ql/src/test/results/clientpositive/join28.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join28.q.out (working copy) @@ -136,7 +136,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Local Work: Map Reduce Local Work @@ -147,7 +147,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-59-55_834_2268567445499795563/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-30-11_626_3991847472392236177/-ext-10000 Stage: Stage-0 Move Operator @@ -157,7 +157,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Stage: Stage-2 Stats-Aggr Operator @@ -165,7 +165,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_18-59-55_834_2268567445499795563/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-30-11_626_3991847472392236177/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -173,7 +173,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 PREHOOK: query: INSERT OVERWRITE TABLE dest_j1 @@ -203,11 +203,11 @@ PREHOOK: query: select * from dest_j1 x order by x.key PREHOOK: type: QUERY PREHOOK: Input: default@dest_j1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_19-00-06_183_3300125804401305378/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-30-19_350_7588261489486285991/-mr-10000 POSTHOOK: query: select * from dest_j1 x order by x.key POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_j1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_19-00-06_183_3300125804401305378/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-30-19_350_7588261489486285991/-mr-10000 POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src1)x.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(srcpart)z.FieldSchema(name:value, type:string, comment:default), ] 128 val_128 Index: ql/src/test/results/clientpositive/transform_ppr1.q.out =================================================================== --- ql/src/test/results/clientpositive/transform_ppr1.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/transform_ppr1.q.out (working copy) @@ -68,12 +68,12 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 [tmap:src] - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [tmap:src] - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 [tmap:src] - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 [tmap:src] + 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] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1284588329 + transient_lastDdlTime 1297250836 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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1284588329 + transient_lastDdlTime 1297250836 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + 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 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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1284588329 + transient_lastDdlTime 1297250836 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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1284588329 + transient_lastDdlTime 1297250836 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=11 + 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 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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1284588329 + transient_lastDdlTime 1297250836 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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1284588329 + transient_lastDdlTime 1297250836 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart/ds=2008-04-09/hr=12 + 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 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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1284588329 + transient_lastDdlTime 1297250836 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -227,16 +227,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1284588329 + transient_lastDdlTime 1297250836 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Extract Filter Operator @@ -254,9 +254,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/nzhang/hive_2010-09-15_17-09-49_113_6975059842786318267/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-50-08_135_283107173524415474/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/nzhang/hive_2010-09-15_17-09-49_113_6975059842786318267/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-50-08_135_283107173524415474/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -285,7 +285,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/nzhang/hive_2010-09-15_17-09-49_237_3543567544677490790/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-50-08_359_2762868009908805155/-mr-10000 POSTHOOK: query: FROM ( FROM srcpart src SELECT TRANSFORM(src.ds, src.key, src.value) @@ -298,7 +298,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/nzhang/hive_2010-09-15_17-09-49_237_3543567544677490790/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-50-08_359_2762868009908805155/-mr-10000 0 val_0 0 val_0 0 val_0 Index: ql/src/test/results/clientpositive/regexp_extract.q.out =================================================================== --- ql/src/test/results/clientpositive/regexp_extract.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/regexp_extract.q.out (working copy) @@ -69,9 +69,9 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src [tmap:src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [tmap:src] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -82,12 +82,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284504429 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -98,15 +98,15 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284504429 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src + name: default.src + name: default.src Reduce Operator Tree: Extract Filter Operator @@ -124,9 +124,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/nzhang/hive_2010-09-14_17-22-34_668_2056813096308329710/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-26-33_708_8806779655229629322/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/nzhang/hive_2010-09-14_17-22-34_668_2056813096308329710/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-26-33_708_8806779655229629322/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -152,7 +152,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/nzhang/hive_2010-09-14_17-22-34_791_2473896929847962683/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-26-33_807_152138909779410778/-mr-10000 POSTHOOK: query: FROM ( FROM src SELECT TRANSFORM(src.key, src.value, 1+2, 3+4) @@ -162,7 +162,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/nzhang/hive_2010-09-14_17-22-34_791_2473896929847962683/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-26-33_807_152138909779410778/-mr-10000 0 0 3 0 0 3 0 0 3 @@ -318,9 +318,9 @@ type: string Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src [tmap:src] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [tmap:src] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -331,12 +331,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284504429 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -347,15 +347,15 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1284504429 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src + name: default.src + name: default.src Reduce Operator Tree: Extract Filter Operator @@ -373,9 +373,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/nzhang/hive_2010-09-14_17-22-38_507_8896713942915944466/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_03-26-37_363_7232667146711968392/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/nzhang/hive_2010-09-14_17-22-38_507_8896713942915944466/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_03-26-37_363_7232667146711968392/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -401,7 +401,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/nzhang/hive_2010-09-14_17-22-38_622_4580748835136954647/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-26-37_453_387118586332357506/-mr-10000 POSTHOOK: query: FROM ( FROM src SELECT TRANSFORM(src.key, src.value, 1+2, 3+4) @@ -411,7 +411,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/nzhang/hive_2010-09-14_17-22-38_622_4580748835136954647/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-26-37_453_387118586332357506/-mr-10000 0 0 3 0 0 3 0 0 3 Index: ql/src/test/results/clientpositive/input5.q.out =================================================================== --- ql/src/test/results/clientpositive/input5.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input5.q.out (working copy) @@ -78,7 +78,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -88,7 +88,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -119,11 +119,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-32-21_789_4017947778315716401/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-24-32_628_1670009285756874613/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-32-21_789_4017947778315716401/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-24-32_628_1670009285756874613/-mr-10000 POSTHOOK: Lineage: dest1.key SCRIPT [(src_thrift)src_thrift.FieldSchema(name:lint, type:array, comment:from deserializer), (src_thrift)src_thrift.FieldSchema(name:lintstring, type:array, comment:from deserializer), ] POSTHOOK: Lineage: dest1.value SCRIPT [(src_thrift)src_thrift.FieldSchema(name:lint, type:array, comment:from deserializer), (src_thrift)src_thrift.FieldSchema(name:lintstring, type:array, comment:from deserializer), ] [0,0,0] [{"myint":0,"mystring":"0","underscore_int":0}] Index: ql/src/test/results/clientpositive/stats7.q.out =================================================================== --- ql/src/test/results/clientpositive/stats7.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/stats7.q.out (working copy) @@ -41,7 +41,7 @@ POSTHOOK: Lineage: analyze_srcpart PARTITION(ds=2008-04-09,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: analyze_srcpart PARTITION(ds=2008-04-09,hr=12).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] ABSTRACT SYNTAX TREE: - (TOK_ANALYZE (TOK_TABTYPE analyze_srcpart (TOK_PARTSPEC (TOK_PARTVAL ds '2008-04-08') (TOK_PARTVAL hr)))) + (TOK_ANALYZE (TOK_TAB analyze_srcpart (TOK_PARTSPEC (TOK_PARTVAL ds '2008-04-08') (TOK_PARTVAL hr)))) STAGE DEPENDENCIES: Stage-0 is a root stage @@ -98,7 +98,7 @@ ds string hr string -Detailed Partition Information Partition(values:[2008-04-08, 11], dbName:default, tableName:analyze_srcpart, createTime:1290146760, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=11, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1290146772, numRows=500, totalSize=5812}) +Detailed Partition Information Partition(values:[2008-04-08, 11], dbName:default, tableName:analyze_srcpart, createTime:1297252089, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=11, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1297252094, numRows=500, totalSize=5812}) PREHOOK: query: describe extended analyze_srcpart PARTITION(ds='2008-04-08',hr=12) PREHOOK: type: DESCTABLE POSTHOOK: query: describe extended analyze_srcpart PARTITION(ds='2008-04-08',hr=12) @@ -116,7 +116,7 @@ ds string hr string -Detailed Partition Information Partition(values:[2008-04-08, 12], dbName:default, tableName:analyze_srcpart, createTime:1290146761, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=12, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1290146772, numRows=500, totalSize=5812}) +Detailed Partition Information Partition(values:[2008-04-08, 12], dbName:default, tableName:analyze_srcpart, createTime:1297252089, lastAccessTime:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart/ds=2008-04-08/hr=12, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), parameters:{numFiles=1, transient_lastDdlTime=1297252094, totalSize=5812, numRows=0}) PREHOOK: query: describe extended analyze_srcpart PREHOOK: type: DESCTABLE POSTHOOK: query: describe extended analyze_srcpart @@ -134,4 +134,4 @@ ds string hr string -Detailed Table Information Table(tableName:analyze_srcpart, dbName:default, owner:null, createTime:1290146739, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_srcpart, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{numPartitions=2, numFiles=2, transient_lastDdlTime=1290146772, numRows=1000, totalSize=11624}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:analyze_srcpart, dbName:default, owner:null, createTime:1297252083, lastAccessTime:1297250836, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_srcpart, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{numPartitions=2, numFiles=2, transient_lastDdlTime=1297252094, numRows=500, totalSize=11624}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) Index: ql/src/test/results/clientpositive/input_testsequencefile.q.out =================================================================== --- ql/src/test/results/clientpositive/input_testsequencefile.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input_testsequencefile.q.out (working copy) @@ -50,7 +50,7 @@ input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest4_sequencefile + name: default.dest4_sequencefile Stage: Stage-5 Conditional Operator @@ -59,7 +59,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-35-03_384_4135258393076562174/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-26-30_349_7751479949698161253/-ext-10000 Stage: Stage-0 Move Operator @@ -69,7 +69,7 @@ input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest4_sequencefile + name: default.dest4_sequencefile Stage: Stage-2 Stats-Aggr Operator @@ -77,7 +77,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-35-03_384_4135258393076562174/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-26-30_349_7751479949698161253/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -85,7 +85,7 @@ input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest4_sequencefile + name: default.dest4_sequencefile PREHOOK: query: FROM src @@ -103,11 +103,11 @@ PREHOOK: query: SELECT dest4_sequencefile.* FROM dest4_sequencefile PREHOOK: type: QUERY PREHOOK: Input: default@dest4_sequencefile -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-35-10_600_1028485578391523559/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-26-35_162_375702893367189273/-mr-10000 POSTHOOK: query: SELECT dest4_sequencefile.* FROM dest4_sequencefile POSTHOOK: type: QUERY POSTHOOK: Input: default@dest4_sequencefile -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-35-10_600_1028485578391523559/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-26-35_162_375702893367189273/-mr-10000 POSTHOOK: Lineage: dest4_sequencefile.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest4_sequencefile.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] 238 val_238 Index: ql/src/test/results/clientpositive/udf3.q.out =================================================================== --- ql/src/test/results/clientpositive/udf3.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/udf3.q.out (working copy) @@ -82,7 +82,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -92,7 +92,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -116,11 +116,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-56-05_977_1141232485951012411/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-53-47_463_2992518731649087624/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-56-05_977_1141232485951012411/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-53-47_463_2992518731649087624/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src.null, ] POSTHOOK: Lineage: dest1.c2 EXPRESSION [(src)src.null, ] POSTHOOK: Lineage: dest1.c3 EXPRESSION [(src)src.null, ] Index: ql/src/test/results/clientpositive/input_testxpath.q.out =================================================================== --- ql/src/test/results/clientpositive/input_testxpath.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input_testxpath.q.out (working copy) @@ -45,7 +45,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Conditional Operator @@ -54,7 +54,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-35-12_088_6842128863792560414/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-26-35_854_6384028662097811554/-ext-10000 Stage: Stage-0 Move Operator @@ -64,7 +64,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -72,7 +72,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-35-12_088_6842128863792560414/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-26-35_854_6384028662097811554/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -80,7 +80,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM src_thrift @@ -99,11 +99,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-35-17_892_423080491144130898/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-26-40_652_5385243772422030284/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-35-17_892_423080491144130898/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-26-40_652_5385243772422030284/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src_thrift)src_thrift.FieldSchema(name:lint, type:array, comment:from deserializer), ] POSTHOOK: Lineage: dest1.mapvalue EXPRESSION [(src_thrift)src_thrift.FieldSchema(name:mstringstring, type:map, comment:from deserializer), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src_thrift)src_thrift.FieldSchema(name:lintstring, type:array, comment:from deserializer), ] Index: ql/src/test/results/clientpositive/join14.q.out =================================================================== --- ql/src/test/results/clientpositive/join14.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join14.q.out (working copy) @@ -95,7 +95,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -105,7 +105,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -130,11 +130,11 @@ PREHOOK: query: select dest1.* from dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-36-06_194_5473515601910832002/-mr-10000 +PREHOOK: Output: file:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-28-13_037_4502098695770863892/-mr-10000 POSTHOOK: query: select dest1.* from dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-36-06_194_5473515601910832002/-mr-10000 +POSTHOOK: Output: file:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-28-13_037_4502098695770863892/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c2 SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] 103 val_103 Index: ql/src/test/results/clientpositive/join37.q.out =================================================================== --- ql/src/test/results/clientpositive/join37.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join37.q.out (working copy) @@ -98,7 +98,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Local Work: Map Reduce Local Work @@ -109,7 +109,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-13-32_000_1610023662261116132/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-32-42_632_1368326352776054384/-ext-10000 Stage: Stage-0 Move Operator @@ -119,7 +119,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 Stage: Stage-2 Stats-Aggr Operator @@ -127,7 +127,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-04_12-13-32_000_1610023662261116132/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-32-42_632_1368326352776054384/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -135,7 +135,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 PREHOOK: query: INSERT OVERWRITE TABLE dest_j1 @@ -158,11 +158,11 @@ PREHOOK: query: select * from dest_j1 x order by x.key PREHOOK: type: QUERY PREHOOK: Input: default@dest_j1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_12-13-42_031_8017880576006388638/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-32-49_535_9141934174232111686/-mr-10000 POSTHOOK: query: select * from dest_j1 x order by x.key POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_j1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-04_12-13-42_031_8017880576006388638/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-32-49_535_9141934174232111686/-mr-10000 POSTHOOK: Lineage: dest_j1.key EXPRESSION [(src1)x.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.val2 SIMPLE [(src)y.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(src1)x.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/groupby3.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby3.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby3.q.out (working copy) @@ -84,7 +84,7 @@ Stage: Stage-2 Map Reduce Alias -> Map Operator Tree: - file:/tmp/nzhang/hive_2010-09-14_16-14-47_199_724415113430484508/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_02-08-37_434_3767537527332075338/-mr-10002 Reduce Output Operator sort order: tag: -1 @@ -171,7 +171,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -181,7 +181,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-3 Stats-Aggr Operator @@ -227,11 +227,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-14-57_582_5542086282376615391/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-08-50_651_1474468764072390949/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-14-57_582_5542086282376615391/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-08-50_651_1474468764072390949/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c2 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c3 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/bucketmapjoin4.q.out =================================================================== --- ql/src/test/results/clientpositive/bucketmapjoin4.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/bucketmapjoin4.q.out (working copy) @@ -117,10 +117,10 @@ Alias Bucket Base File Name Mapping: b {srcbucket20.txt=[srcbucket20.txt], srcbucket21.txt=[srcbucket21.txt]} Alias Bucket File Name Mapping: - b {pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt=[pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt=[pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt]} + b {pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt]} Alias Bucket Output File Name Mapping: - pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt 0 - pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt 1 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt 0 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt 1 Stage: Stage-1 Map Reduce @@ -162,9 +162,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-39-37_892_6043894210590111647/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-59_406_5201249593633046993/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-39-37_892_6043894210590111647/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-59_406_5201249593633046993/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -174,14 +174,14 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1296758377 + transient_lastDdlTime 1297245239 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -189,9 +189,9 @@ Map Reduce Local Work Needs Tagging: false Path -> Alias: - pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcbucket_mapjoin [a] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin [a] Path -> Partition: - pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcbucket_mapjoin + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin Partition base file name: srcbucket_mapjoin input format: org.apache.hadoop.mapred.TextInputFormat @@ -203,12 +203,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/njain/hive_commit1/build/ql/test/data/warehouse/srcbucket_mapjoin - name srcbucket_mapjoin + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin + name default.srcbucket_mapjoin serialization.ddl struct srcbucket_mapjoin { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1296758374 + transient_lastDdlTime 1297245234 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -220,15 +220,15 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcbucket_mapjoin - name srcbucket_mapjoin + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin + name default.srcbucket_mapjoin serialization.ddl struct srcbucket_mapjoin { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1296758374 + transient_lastDdlTime 1297245234 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket_mapjoin - name: srcbucket_mapjoin + name: default.srcbucket_mapjoin + name: default.srcbucket_mapjoin Stage: Stage-5 Conditional Operator @@ -237,14 +237,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-39-37_892_6043894210590111647/-ext-10002 - destination: pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-39-37_892_6043894210590111647/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-59_406_5201249593633046993/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-59_406_5201249593633046993/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-39-37_892_6043894210590111647/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-59_406_5201249593633046993/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -254,28 +254,28 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1296758377 + transient_lastDdlTime 1297245239 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - tmp directory: pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-39-37_892_6043894210590111647/-ext-10001 + name: default.bucketmapjoin_tmp_result + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-59_406_5201249593633046993/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-39-37_892_6043894210590111647/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-59_406_5201249593633046993/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-39-37_892_6043894210590111647/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-59_406_5201249593633046993/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-39-37_892_6043894210590111647/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-59_406_5201249593633046993/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -286,22 +286,22 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1296758377 + transient_lastDdlTime 1297245239 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-39-37_892_6043894210590111647/-ext-10002 [pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-39-37_892_6043894210590111647/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-59_406_5201249593633046993/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-59_406_5201249593633046993/-ext-10002] Path -> Partition: - pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-39-37_892_6043894210590111647/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-53-59_406_5201249593633046993/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -312,12 +312,12 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1296758377 + transient_lastDdlTime 1297245239 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -328,15 +328,15 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1296758377 + transient_lastDdlTime 1297245239 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result PREHOOK: query: insert overwrite table bucketmapjoin_tmp_result @@ -359,11 +359,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/njain/hive_2011-02-03_10-39-48_581_8752071715056059159/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-54-09_845_2815791843384768398/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/njain/hive_2011-02-03_10-39-48_581_8752071715056059159/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-54-09_845_2815791843384768398/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_tmp_result.key SIMPLE [(srcbucket_mapjoin)a.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_tmp_result.value1 SIMPLE [(srcbucket_mapjoin)a.FieldSchema(name:value, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_tmp_result.value2 SIMPLE [(srcbucket_mapjoin)b.FieldSchema(name:value, type:string, comment:null), ] @@ -410,11 +410,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/njain/hive_2011-02-03_10-40-03_632_6447279372975019708/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-54-28_041_9183441416441449566/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/njain/hive_2011-02-03_10-40-03_632_6447279372975019708/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-54-28_041_9183441416441449566/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value2 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value2, type:string, comment:null), ] @@ -453,14 +453,14 @@ PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_hash_result_1 PREHOOK: Input: default@bucketmapjoin_hash_result_2 -PREHOOK: Output: file:/tmp/njain/hive_2011-02-03_10-40-10_514_4277378777837780536/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-54-36_063_8003568545285273871/-mr-10000 POSTHOOK: query: select a.key-b.key, a.value1-b.value1, a.value2-b.value2 from bucketmapjoin_hash_result_1 a left outer join bucketmapjoin_hash_result_2 b on a.key = b.key POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_hash_result_1 POSTHOOK: Input: default@bucketmapjoin_hash_result_2 -POSTHOOK: Output: file:/tmp/njain/hive_2011-02-03_10-40-10_514_4277378777837780536/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-54-36_063_8003568545285273871/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value2 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value2, type:string, comment:null), ] @@ -535,10 +535,10 @@ Alias Bucket Base File Name Mapping: a {srcbucket20.txt=[srcbucket20.txt], srcbucket21.txt=[srcbucket21.txt]} Alias Bucket File Name Mapping: - a {pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt=[pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt=[pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt]} + a {pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt]} Alias Bucket Output File Name Mapping: - pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt 0 - pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt 1 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt 0 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt 1 Stage: Stage-1 Map Reduce @@ -580,9 +580,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-40-13_672_8524397052406932420/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-54-39_731_5984534614373251350/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-40-13_672_8524397052406932420/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-54-39_731_5984534614373251350/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -592,8 +592,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 464 @@ -601,9 +601,9 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 8983 - transient_lastDdlTime 1296758403 + transient_lastDdlTime 1297245267 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -611,9 +611,9 @@ Map Reduce Local Work Needs Tagging: false Path -> Alias: - pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcbucket_mapjoin [b] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin [b] Path -> Partition: - pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcbucket_mapjoin + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin Partition base file name: srcbucket_mapjoin input format: org.apache.hadoop.mapred.TextInputFormat @@ -625,12 +625,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/njain/hive_commit1/build/ql/test/data/warehouse/srcbucket_mapjoin - name srcbucket_mapjoin + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin + name default.srcbucket_mapjoin serialization.ddl struct srcbucket_mapjoin { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1296758374 + transient_lastDdlTime 1297245234 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -642,15 +642,15 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/srcbucket_mapjoin - name srcbucket_mapjoin + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin + name default.srcbucket_mapjoin serialization.ddl struct srcbucket_mapjoin { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1296758374 + transient_lastDdlTime 1297245234 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket_mapjoin - name: srcbucket_mapjoin + name: default.srcbucket_mapjoin + name: default.srcbucket_mapjoin Stage: Stage-5 Conditional Operator @@ -659,14 +659,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-40-13_672_8524397052406932420/-ext-10002 - destination: pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-40-13_672_8524397052406932420/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-54-39_731_5984534614373251350/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-54-39_731_5984534614373251350/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-40-13_672_8524397052406932420/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-54-39_731_5984534614373251350/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -676,8 +676,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 464 @@ -685,23 +685,23 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 8983 - transient_lastDdlTime 1296758403 + transient_lastDdlTime 1297245267 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - tmp directory: pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-40-13_672_8524397052406932420/-ext-10001 + name: default.bucketmapjoin_tmp_result + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-54-39_731_5984534614373251350/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-40-13_672_8524397052406932420/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-54-39_731_5984534614373251350/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-40-13_672_8524397052406932420/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-54-39_731_5984534614373251350/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-40-13_672_8524397052406932420/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-54-39_731_5984534614373251350/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -712,8 +712,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 464 @@ -721,17 +721,17 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 8983 - transient_lastDdlTime 1296758403 + transient_lastDdlTime 1297245267 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-40-13_672_8524397052406932420/-ext-10002 [pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-40-13_672_8524397052406932420/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-54-39_731_5984534614373251350/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-54-39_731_5984534614373251350/-ext-10002] Path -> Partition: - pfile:/data/users/njain/hive_commit1/build/ql/scratchdir/hive_2011-02-03_10-40-13_672_8524397052406932420/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_01-54-39_731_5984534614373251350/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -742,8 +742,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 464 @@ -751,7 +751,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 8983 - transient_lastDdlTime 1296758403 + transient_lastDdlTime 1297245267 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -762,8 +762,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive_commit1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 464 @@ -771,10 +771,10 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 8983 - transient_lastDdlTime 1296758403 + transient_lastDdlTime 1297245267 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result PREHOOK: query: insert overwrite table bucketmapjoin_tmp_result @@ -809,11 +809,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/njain/hive_2011-02-03_10-40-22_377_5727516753399224026/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-54-50_122_8613749961844730191/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/njain/hive_2011-02-03_10-40-22_377_5727516753399224026/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-54-50_122_8613749961844730191/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value2 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value2, type:string, comment:null), ] @@ -896,11 +896,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/njain/hive_2011-02-03_10-40-37_249_1616452678927934445/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-55-08_155_4206217238904945762/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/njain/hive_2011-02-03_10-40-37_249_1616452678927934445/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-55-08_155_4206217238904945762/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] @@ -963,14 +963,14 @@ PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_hash_result_1 PREHOOK: Input: default@bucketmapjoin_hash_result_2 -PREHOOK: Output: file:/tmp/njain/hive_2011-02-03_10-40-44_035_1613079877808759652/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-55-16_326_4161521814211922441/-mr-10000 POSTHOOK: query: select a.key-b.key, a.value1-b.value1, a.value2-b.value2 from bucketmapjoin_hash_result_1 a left outer join bucketmapjoin_hash_result_2 b on a.key = b.key POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_hash_result_1 POSTHOOK: Input: default@bucketmapjoin_hash_result_2 -POSTHOOK: Output: file:/tmp/njain/hive_2011-02-03_10-40-44_035_1613079877808759652/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-55-16_326_4161521814211922441/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] Index: ql/src/test/results/clientpositive/union22.q.out =================================================================== --- ql/src/test/results/clientpositive/union22.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/union22.q.out (working copy) @@ -162,7 +162,7 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/var/folders/7P/7PeC14kXFIWq0PIYyexGbmKuXUk/-Tmp-/jsichi/hive_2011-02-07_10-46-08_466_7609771648760025606/-mr-10002 + directory: file:/tmp/sdong/hive_2011-02-09_04-17-37_776_3941833274768114092/-mr-10002 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -178,9 +178,9 @@ Map Reduce Local Work Needs Tagging: false Path -> Alias: - pfile:/Users/jsichi/open/hive-trunk/build/ql/test/data/warehouse/dst_union22/ds=1 [null-subquery2:subq-subquery2:a] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dst_union22/ds=1 [null-subquery2:subq-subquery2:a] Path -> Partition: - pfile:/Users/jsichi/open/hive-trunk/build/ql/test/data/warehouse/dst_union22/ds=1 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dst_union22/ds=1 Partition base file name: ds=1 input format: org.apache.hadoop.mapred.TextInputFormat @@ -193,8 +193,8 @@ columns.types string:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/jsichi/open/hive-trunk/build/ql/test/data/warehouse/dst_union22/ds=1 - name dst_union22 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dst_union22/ds=1 + name default.dst_union22 numFiles 1 numPartitions 1 numRows 500 @@ -203,7 +203,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 11624 - transient_lastDdlTime 1297104359 + transient_lastDdlTime 1297253852 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -214,8 +214,8 @@ columns.types string:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/jsichi/open/hive-trunk/build/ql/test/data/warehouse/dst_union22 - name dst_union22 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dst_union22 + name default.dst_union22 numFiles 1 numPartitions 1 numRows 500 @@ -224,15 +224,15 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 11624 - transient_lastDdlTime 1297104359 + transient_lastDdlTime 1297253852 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dst_union22 - name: dst_union22 + name: default.dst_union22 + name: default.dst_union22 Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - file:/var/folders/7P/7PeC14kXFIWq0PIYyexGbmKuXUk/-Tmp-/jsichi/hive_2011-02-07_10-46-08_466_7609771648760025606/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_04-17-37_776_3941833274768114092/-mr-10002 Select Operator expressions: expr: _col0 @@ -275,10 +275,10 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/Users/jsichi/open/hive-trunk/build/ql/scratchdir/hive_2011-02-07_10-46-08_466_7609771648760025606/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_04-17-37_776_3941833274768114092/-ext-10000 NumFilesPerFileSink: 1 Static Partition Specification: ds=2/ - Stats Publishing Key Prefix: pfile:/Users/jsichi/open/hive-trunk/build/ql/scratchdir/hive_2011-02-07_10-46-08_466_7609771648760025606/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_04-17-37_776_3941833274768114092/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -288,8 +288,8 @@ columns.types string:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/jsichi/open/hive-trunk/build/ql/test/data/warehouse/dst_union22 - name dst_union22 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dst_union22 + name default.dst_union22 numFiles 1 numPartitions 1 numRows 500 @@ -298,9 +298,9 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 11624 - transient_lastDdlTime 1297104359 + transient_lastDdlTime 1297253852 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dst_union22 + name: default.dst_union22 TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -344,10 +344,10 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/Users/jsichi/open/hive-trunk/build/ql/scratchdir/hive_2011-02-07_10-46-08_466_7609771648760025606/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_04-17-37_776_3941833274768114092/-ext-10000 NumFilesPerFileSink: 1 Static Partition Specification: ds=2/ - Stats Publishing Key Prefix: pfile:/Users/jsichi/open/hive-trunk/build/ql/scratchdir/hive_2011-02-07_10-46-08_466_7609771648760025606/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_04-17-37_776_3941833274768114092/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -357,8 +357,8 @@ columns.types string:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/jsichi/open/hive-trunk/build/ql/test/data/warehouse/dst_union22 - name dst_union22 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dst_union22 + name default.dst_union22 numFiles 1 numPartitions 1 numRows 500 @@ -367,18 +367,18 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 11624 - transient_lastDdlTime 1297104359 + transient_lastDdlTime 1297253852 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dst_union22 + name: default.dst_union22 TotalFiles: 1 GatherStats: true MultiFileSpray: false Needs Tagging: false Path -> Alias: - file:/var/folders/7P/7PeC14kXFIWq0PIYyexGbmKuXUk/-Tmp-/jsichi/hive_2011-02-07_10-46-08_466_7609771648760025606/-mr-10002 [file:/var/folders/7P/7PeC14kXFIWq0PIYyexGbmKuXUk/-Tmp-/jsichi/hive_2011-02-07_10-46-08_466_7609771648760025606/-mr-10002] - pfile:/Users/jsichi/open/hive-trunk/build/ql/test/data/warehouse/dst_union22_delta/ds=1 [null-subquery1:subq-subquery1:dst_union22_delta] + file:/tmp/sdong/hive_2011-02-09_04-17-37_776_3941833274768114092/-mr-10002 [file:/tmp/sdong/hive_2011-02-09_04-17-37_776_3941833274768114092/-mr-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dst_union22_delta/ds=1 [null-subquery1:subq-subquery1:dst_union22_delta] Path -> Partition: - file:/var/folders/7P/7PeC14kXFIWq0PIYyexGbmKuXUk/-Tmp-/jsichi/hive_2011-02-07_10-46-08_466_7609771648760025606/-mr-10002 + file:/tmp/sdong/hive_2011-02-09_04-17-37_776_3941833274768114092/-mr-10002 Partition base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -394,7 +394,7 @@ columns _col0,_col1,_col10,_col11 columns.types string,string,string,string escape.delim \ - pfile:/Users/jsichi/open/hive-trunk/build/ql/test/data/warehouse/dst_union22_delta/ds=1 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dst_union22_delta/ds=1 Partition base file name: ds=1 input format: org.apache.hadoop.mapred.TextInputFormat @@ -407,8 +407,8 @@ columns.types string:string:string:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/jsichi/open/hive-trunk/build/ql/test/data/warehouse/dst_union22_delta/ds=1 - name dst_union22_delta + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dst_union22_delta/ds=1 + name default.dst_union22_delta numFiles 1 numPartitions 1 numRows 500 @@ -417,7 +417,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 17436 - transient_lastDdlTime 1297104368 + transient_lastDdlTime 1297253857 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -428,8 +428,8 @@ columns.types string:string:string:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/jsichi/open/hive-trunk/build/ql/test/data/warehouse/dst_union22_delta - name dst_union22_delta + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dst_union22_delta + name default.dst_union22_delta numFiles 1 numPartitions 1 numRows 500 @@ -438,10 +438,10 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 17436 - transient_lastDdlTime 1297104368 + transient_lastDdlTime 1297253857 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dst_union22_delta - name: dst_union22_delta + name: default.dst_union22_delta + name: default.dst_union22_delta Stage: Stage-0 Move Operator @@ -449,7 +449,7 @@ partition: ds 2 replace: true - source: pfile:/Users/jsichi/open/hive-trunk/build/ql/scratchdir/hive_2011-02-07_10-46-08_466_7609771648760025606/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_04-17-37_776_3941833274768114092/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -459,8 +459,8 @@ columns.types string:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/Users/jsichi/open/hive-trunk/build/ql/test/data/warehouse/dst_union22 - name dst_union22 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dst_union22 + name default.dst_union22 numFiles 1 numPartitions 1 numRows 500 @@ -469,14 +469,14 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 11624 - transient_lastDdlTime 1297104359 + transient_lastDdlTime 1297253852 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dst_union22 - tmp directory: pfile:/Users/jsichi/open/hive-trunk/build/ql/scratchdir/hive_2011-02-07_10-46-08_466_7609771648760025606/-ext-10001 + name: default.dst_union22 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_04-17-37_776_3941833274768114092/-ext-10001 Stage: Stage-4 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/Users/jsichi/open/hive-trunk/build/ql/scratchdir/hive_2011-02-07_10-46-08_466_7609771648760025606/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_04-17-37_776_3941833274768114092/-ext-10000/ PREHOOK: query: insert overwrite table dst_union22 partition (ds='2') select * from @@ -525,11 +525,11 @@ PREHOOK: query: select * from dst_union22 where ds = '2' order by k1, k2, k3, k4 PREHOOK: type: QUERY PREHOOK: Input: default@dst_union22@ds=2 -PREHOOK: Output: file:/var/folders/7P/7PeC14kXFIWq0PIYyexGbmKuXUk/-Tmp-/jsichi/hive_2011-02-07_10-46-27_561_2189263148420397827/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-17-48_322_4841972035410026782/-mr-10000 POSTHOOK: query: select * from dst_union22 where ds = '2' order by k1, k2, k3, k4 POSTHOOK: type: QUERY POSTHOOK: Input: default@dst_union22@ds=2 -POSTHOOK: Output: file:/var/folders/7P/7PeC14kXFIWq0PIYyexGbmKuXUk/-Tmp-/jsichi/hive_2011-02-07_10-46-27_561_2189263148420397827/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_04-17-48_322_4841972035410026782/-mr-10000 POSTHOOK: Lineage: dst_union22 PARTITION(ds=1).k1 SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dst_union22 PARTITION(ds=1).k2 SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dst_union22 PARTITION(ds=1).k3 SIMPLE [(src)src.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/load_dyn_part1.q.out =================================================================== --- ql/src/test/results/clientpositive/load_dyn_part1.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/load_dyn_part1.q.out (working copy) @@ -25,7 +25,7 @@ ds string hr string -Detailed Table Information Table(tableName:nzhang_part1, dbName:default, owner:null, createTime:1289453198, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/nzhang_part1, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{transient_lastDdlTime=1289453198}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:nzhang_part1, dbName:default, owner:null, createTime:1297248917, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/nzhang_part1, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{transient_lastDdlTime=1297248917}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) PREHOOK: query: explain from srcpart insert overwrite table nzhang_part1 partition (ds, hr) select key, value, ds, hr where ds <= '2008-04-08' @@ -81,7 +81,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part1 + name: default.nzhang_part1 Filter Operator predicate: expr: (ds > '2008-04-08') @@ -102,7 +102,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part2 + name: default.nzhang_part2 Stage: Stage-6 Conditional Operator @@ -111,7 +111,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-26-38_281_4710587136591193673/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-55-17_552_6782286904856424008/-ext-10000 Stage: Stage-0 Move Operator @@ -124,7 +124,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part1 + name: default.nzhang_part1 Stage: Stage-3 Stats-Aggr Operator @@ -132,7 +132,7 @@ Stage: Stage-4 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-26-38_281_4710587136591193673/-ext-10004 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-55-17_552_6782286904856424008/-ext-10004 File Output Operator compressed: false GlobalTableId: 0 @@ -140,7 +140,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part1 + name: default.nzhang_part1 Stage: Stage-10 Conditional Operator @@ -149,7 +149,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-26-38_281_4710587136591193673/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-55-17_552_6782286904856424008/-ext-10002 Stage: Stage-1 Move Operator @@ -162,7 +162,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part2 + name: default.nzhang_part2 Stage: Stage-7 Stats-Aggr Operator @@ -170,7 +170,7 @@ Stage: Stage-8 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/njain/hive1/hive1/build/ql/scratchdir/hive_2010-11-10_21-26-38_281_4710587136591193673/-ext-10005 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-55-17_552_6782286904856424008/-ext-10005 File Output Operator compressed: false GlobalTableId: 0 @@ -178,7 +178,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: nzhang_part2 + name: default.nzhang_part2 PREHOOK: query: from srcpart @@ -243,11 +243,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@nzhang_part1@ds=2008-04-08/hr=11 PREHOOK: Input: default@nzhang_part1@ds=2008-04-08/hr=12 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-10_21-27-03_627_6659113528230212839/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-55-28_100_4395746564770721434/-mr-10000 POSTHOOK: query: select * from nzhang_part1 where ds is not null and hr is not null POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_part1@ds=2008-04-08/hr=11 POSTHOOK: Input: default@nzhang_part1@ds=2008-04-08/hr=12 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-55-28_100_4395746564770721434/-mr-10000 POSTHOOK: Lineage: nzhang_part1 PARTITION(ds=2008-04-08,hr=11).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part1 PARTITION(ds=2008-04-08,hr=11).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part1 PARTITION(ds=2008-04-08,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] @@ -1260,11 +1261,12 @@ PREHOOK: type: QUERY PREHOOK: Input: default@nzhang_part2@ds=2008-12-31/hr=11 PREHOOK: Input: default@nzhang_part2@ds=2008-12-31/hr=12 -PREHOOK: Output: file:/tmp/njain/hive_2010-11-10_21-27-04_626_7101552493744042234/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-55-28_685_1461132541063978266/-mr-10000 POSTHOOK: query: select * from nzhang_part2 where ds is not null and hr is not null POSTHOOK: type: QUERY POSTHOOK: Input: default@nzhang_part2@ds=2008-12-31/hr=11 POSTHOOK: Input: default@nzhang_part2@ds=2008-12-31/hr=12 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-55-28_685_1461132541063978266/-mr-10000 POSTHOOK: Lineage: nzhang_part1 PARTITION(ds=2008-04-08,hr=11).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part1 PARTITION(ds=2008-04-08,hr=11).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: nzhang_part1 PARTITION(ds=2008-04-08,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/sample2.q.out =================================================================== --- ql/src/test/results/clientpositive/sample2.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/sample2.q.out (working copy) @@ -54,9 +54,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-08_796_3592086051996573769/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-42_559_7662244422355320606/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-08_796_3592086051996573769/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-42_559_7662244422355320606/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -66,22 +66,22 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510248 + transient_lastDdlTime 1297250862 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: true MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt [s] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt [s] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket/srcbucket0.txt Partition base file name: srcbucket0.txt input format: org.apache.hadoop.mapred.TextInputFormat @@ -93,12 +93,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket - name srcbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket + name default.srcbucket serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504426 + transient_lastDdlTime 1297243146 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -110,15 +110,15 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/srcbucket - name srcbucket + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket + name default.srcbucket serialization.ddl struct srcbucket { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284504426 + transient_lastDdlTime 1297243146 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket - name: srcbucket + name: default.srcbucket + name: default.srcbucket Stage: Stage-5 Conditional Operator @@ -127,14 +127,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-08_796_3592086051996573769/-ext-10002 - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-08_796_3592086051996573769/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-42_559_7662244422355320606/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-42_559_7662244422355320606/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-08_796_3592086051996573769/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-42_559_7662244422355320606/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -144,28 +144,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510248 + transient_lastDdlTime 1297250862 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - tmp directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-08_796_3592086051996573769/-ext-10001 + name: default.dest1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-42_559_7662244422355320606/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-08_796_3592086051996573769/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-42_559_7662244422355320606/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-08_796_3592086051996573769/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-42_559_7662244422355320606/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-08_796_3592086051996573769/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-42_559_7662244422355320606/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -176,22 +176,22 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510248 + transient_lastDdlTime 1297250862 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-08_796_3592086051996573769/-ext-10002 [pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-08_796_3592086051996573769/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-42_559_7662244422355320606/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-42_559_7662244422355320606/-ext-10002] Path -> Partition: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-24-08_796_3592086051996573769/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-27-42_559_7662244422355320606/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -202,12 +202,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/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510248 + transient_lastDdlTime 1297250862 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -218,15 +218,15 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/nzhang/work/784/apache-hive/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1284510248 + transient_lastDdlTime 1297250862 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - name: dest1 + name: default.dest1 + name: default.dest1 PREHOOK: query: INSERT OVERWRITE TABLE dest1 SELECT s.* @@ -244,11 +244,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-24-15_725_5572548852641754603/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-27-47_574_1371877069029139520/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-24-15_725_5572548852641754603/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-27-47_574_1371877069029139520/-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), ] 474 val_475 Index: ql/src/test/results/clientpositive/stats2.q.out =================================================================== --- ql/src/test/results/clientpositive/stats2.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/stats2.q.out (working copy) @@ -45,7 +45,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: analyze_t1 + name: default.analyze_t1 Stage: Stage-0 Move Operator @@ -58,7 +58,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: analyze_t1 + name: default.analyze_t1 PREHOOK: query: insert overwrite table analyze_t1 partition (ds, hr) select * from srcpart where ds is not null @@ -103,7 +103,7 @@ ds string hr string -Detailed Table Information Table(tableName:analyze_t1, dbName:default, owner:null, createTime:1290126752, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_t1, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{transient_lastDdlTime=1290126752}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:analyze_t1, dbName:default, owner:null, createTime:1297252015, lastAccessTime:1297250836, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_t1, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{transient_lastDdlTime=1297252015}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) PREHOOK: query: explain analyze table analyze_t1 partition (ds, hr) compute statistics PREHOOK: type: QUERY POSTHOOK: query: explain analyze table analyze_t1 partition (ds, hr) compute statistics @@ -117,7 +117,7 @@ POSTHOOK: Lineage: analyze_t1 PARTITION(ds=2008-04-09,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: analyze_t1 PARTITION(ds=2008-04-09,hr=12).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ] ABSTRACT SYNTAX TREE: - (TOK_ANALYZE (TOK_TABTYPE analyze_t1 (TOK_PARTSPEC (TOK_PARTVAL ds) (TOK_PARTVAL hr)))) + (TOK_ANALYZE (TOK_TAB analyze_t1 (TOK_PARTSPEC (TOK_PARTVAL ds) (TOK_PARTVAL hr)))) STAGE DEPENDENCIES: Stage-0 is a root stage @@ -182,4 +182,4 @@ ds string hr string -Detailed Table Information Table(tableName:analyze_t1, dbName:default, owner:null, createTime:1290126752, lastAccessTime:0, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/Users/heyongqiang/Documents/workspace/Hive-2/build/ql/test/data/warehouse/analyze_t1, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{numPartitions=4, numFiles=4, transient_lastDdlTime=1290126769, numRows=2000, totalSize=23248}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) +Detailed Table Information Table(tableName:analyze_t1, dbName:default, owner:null, createTime:1297252015, lastAccessTime:1297250836, retention:0, sd:StorageDescriptor(cols:[FieldSchema(name:key, type:string, comment:default), FieldSchema(name:value, type:string, comment:default), FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], location:pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/analyze_t1, inputFormat:org.apache.hadoop.mapred.TextInputFormat, outputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat, compressed:false, numBuckets:-1, serdeInfo:SerDeInfo(name:null, serializationLib:org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, parameters:{serialization.format=1}), bucketCols:[], sortCols:[], parameters:{}), partitionKeys:[FieldSchema(name:ds, type:string, comment:null), FieldSchema(name:hr, type:string, comment:null)], parameters:{numPartitions=4, numFiles=4, transient_lastDdlTime=1297252026, numRows=500, totalSize=23248}, viewOriginalText:null, viewExpandedText:null, tableType:MANAGED_TABLE) Index: ql/src/test/results/clientpositive/input_testxpath2.q.out =================================================================== --- ql/src/test/results/clientpositive/input_testxpath2.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input_testxpath2.q.out (working copy) @@ -53,7 +53,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Conditional Operator @@ -62,7 +62,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-35-19_076_8349888760517126679/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-26-41_314_2708965025420345412/-ext-10000 Stage: Stage-0 Move Operator @@ -72,7 +72,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -80,7 +80,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_16-35-19_076_8349888760517126679/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-26-41_314_2708965025420345412/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -88,7 +88,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM src_thrift @@ -107,11 +107,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-35-24_958_6888819878366321399/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-26-46_640_2578166767130722969/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-35-24_958_6888819878366321399/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-26-46_640_2578166767130722969/-mr-10000 POSTHOOK: Lineage: dest1.lint_size EXPRESSION [(src_thrift)src_thrift.FieldSchema(name:lint, type:array, comment:from deserializer), ] POSTHOOK: Lineage: dest1.lintstring_size EXPRESSION [(src_thrift)src_thrift.FieldSchema(name:lintstring, type:array, comment:from deserializer), ] POSTHOOK: Lineage: dest1.mstringstring_size EXPRESSION [(src_thrift)src_thrift.FieldSchema(name:mstringstring, type:map, comment:from deserializer), ] Index: ql/src/test/results/clientpositive/udf_10_trims.q.out =================================================================== --- ql/src/test/results/clientpositive/udf_10_trims.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/udf_10_trims.q.out (working copy) @@ -53,7 +53,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-5 Conditional Operator @@ -62,7 +62,7 @@ Move Operator files: hdfs directory: true - destination: pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-57-19_255_7754784838144044480/-ext-10000 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-54-46_250_8802840860552784025/-ext-10000 Stage: Stage-0 Move Operator @@ -72,7 +72,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -80,7 +80,7 @@ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/nzhang/work/784/apache-hive/build/ql/scratchdir/hive_2010-09-14_17-57-19_255_7754784838144044480/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-54-46_250_8802840860552784025/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 @@ -88,7 +88,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: INSERT OVERWRITE TABLE dest1 Index: ql/src/test/results/clientpositive/combine2.q.out =================================================================== --- ql/src/test/results/clientpositive/combine2.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/combine2.q.out (working copy) @@ -132,7 +132,7 @@ PREHOOK: Input: default@combine2@value=val_8 PREHOOK: Input: default@combine2@value=val_9 PREHOOK: Input: default@combine2@value=| -PREHOOK: Output: file:/tmp/njain/hive_2010-11-10_21-25-40_498_5843958235995711679/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-59-15_823_3354952411464577421/-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 @@ -143,6 +143,7 @@ POSTHOOK: Input: default@combine2@value=val_8 POSTHOOK: Input: default@combine2@value=val_9 POSTHOOK: Input: default@combine2@value=| +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-59-15_823_3354952411464577421/-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), ] @@ -212,16 +213,16 @@ type: bigint Needs Tagging: false Path -> Alias: - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2/value=2010-04-21 09%3A45%3A00 [combine2] - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2/value=val_0 [combine2] - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2/value=val_2 [combine2] - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2/value=val_4 [combine2] - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2/value=val_5 [combine2] - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2/value=val_8 [combine2] - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2/value=val_9 [combine2] - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2/value=| [combine2] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2/value=2010-04-21 09%3A45%3A00 [combine2] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2/value=val_0 [combine2] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2/value=val_2 [combine2] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2/value=val_4 [combine2] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2/value=val_5 [combine2] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2/value=val_8 [combine2] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2/value=val_9 [combine2] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2/value=| [combine2] Path -> Partition: - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2/value=2010-04-21 09%3A45%3A00 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -234,8 +235,8 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2 - name combine2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2/value=2010-04-21 09%3A45%3A00 + name default.combine2 numFiles 8 numPartitions 8 numRows 12 @@ -244,7 +245,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1289453139 + transient_lastDdlTime 1297245555 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -255,8 +256,8 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2 - name combine2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2 + name default.combine2 numFiles 8 numPartitions 8 numRows 12 @@ -265,11 +266,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1289453139 + transient_lastDdlTime 1297245555 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: combine2 - name: combine2 - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2/value=val_0 + name: default.combine2 + name: default.combine2 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2/value=val_0 Partition base file name: value=val_0 input format: org.apache.hadoop.mapred.TextInputFormat @@ -282,8 +283,8 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2 - name combine2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2/value=val_0 + name default.combine2 numFiles 8 numPartitions 8 numRows 12 @@ -292,7 +293,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1289453139 + transient_lastDdlTime 1297245555 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -303,8 +304,8 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2 - name combine2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2 + name default.combine2 numFiles 8 numPartitions 8 numRows 12 @@ -313,11 +314,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1289453139 + transient_lastDdlTime 1297245555 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: combine2 - name: combine2 - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2/value=val_2 + name: default.combine2 + name: default.combine2 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2/value=val_2 Partition base file name: value=val_2 input format: org.apache.hadoop.mapred.TextInputFormat @@ -330,8 +331,8 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2 - name combine2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2/value=val_2 + name default.combine2 numFiles 8 numPartitions 8 numRows 12 @@ -340,7 +341,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1289453139 + transient_lastDdlTime 1297245555 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -351,8 +352,8 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2 - name combine2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2 + name default.combine2 numFiles 8 numPartitions 8 numRows 12 @@ -361,11 +362,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1289453139 + transient_lastDdlTime 1297245555 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: combine2 - name: combine2 - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2/value=val_4 + name: default.combine2 + name: default.combine2 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2/value=val_4 Partition base file name: value=val_4 input format: org.apache.hadoop.mapred.TextInputFormat @@ -378,8 +379,8 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2 - name combine2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2/value=val_4 + name default.combine2 numFiles 8 numPartitions 8 numRows 12 @@ -388,7 +389,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1289453139 + transient_lastDdlTime 1297245555 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -399,8 +400,8 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2 - name combine2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2 + name default.combine2 numFiles 8 numPartitions 8 numRows 12 @@ -409,11 +410,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1289453139 + transient_lastDdlTime 1297245555 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: combine2 - name: combine2 - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2/value=val_5 + name: default.combine2 + name: default.combine2 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2/value=val_5 Partition base file name: value=val_5 input format: org.apache.hadoop.mapred.TextInputFormat @@ -426,8 +427,8 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2 - name combine2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2/value=val_5 + name default.combine2 numFiles 8 numPartitions 8 numRows 12 @@ -436,7 +437,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1289453139 + transient_lastDdlTime 1297245555 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -447,8 +448,8 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2 - name combine2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2 + name default.combine2 numFiles 8 numPartitions 8 numRows 12 @@ -457,11 +458,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1289453139 + transient_lastDdlTime 1297245555 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: combine2 - name: combine2 - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2/value=val_8 + name: default.combine2 + name: default.combine2 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2/value=val_8 Partition base file name: value=val_8 input format: org.apache.hadoop.mapred.TextInputFormat @@ -474,8 +475,8 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2 - name combine2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2/value=val_8 + name default.combine2 numFiles 8 numPartitions 8 numRows 12 @@ -484,7 +485,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1289453139 + transient_lastDdlTime 1297245555 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -495,8 +496,8 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2 - name combine2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2 + name default.combine2 numFiles 8 numPartitions 8 numRows 12 @@ -505,11 +506,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1289453139 + transient_lastDdlTime 1297245555 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: combine2 - name: combine2 - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2/value=val_9 + name: default.combine2 + name: default.combine2 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2/value=val_9 Partition base file name: value=val_9 input format: org.apache.hadoop.mapred.TextInputFormat @@ -522,8 +523,8 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2 - name combine2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2/value=val_9 + name default.combine2 numFiles 8 numPartitions 8 numRows 12 @@ -532,7 +533,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1289453139 + transient_lastDdlTime 1297245555 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -543,8 +544,8 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2 - name combine2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2 + name default.combine2 numFiles 8 numPartitions 8 numRows 12 @@ -553,11 +554,11 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1289453139 + transient_lastDdlTime 1297245555 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: combine2 - name: combine2 - pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2/value=| + name: default.combine2 + name: default.combine2 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2/value=| Partition base file name: value=| input format: org.apache.hadoop.mapred.TextInputFormat @@ -570,8 +571,8 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2 - name combine2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2/value=| + name default.combine2 numFiles 8 numPartitions 8 numRows 12 @@ -580,7 +581,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1289453139 + transient_lastDdlTime 1297245555 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -591,8 +592,8 @@ columns.types string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/njain/hive1/hive1/build/ql/test/data/warehouse/combine2 - name combine2 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/combine2 + name default.combine2 numFiles 8 numPartitions 8 numRows 12 @@ -601,10 +602,10 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 26 - transient_lastDdlTime 1289453139 + transient_lastDdlTime 1297245555 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: combine2 - name: combine2 + name: default.combine2 + name: default.combine2 Reduce Operator Tree: Group By Operator aggregations: @@ -620,9 +621,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/njain/hive_2010-11-10_21-25-53_460_137319524724354518/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_01-59-20_189_8383634464027318555/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/njain/hive_2010-11-10_21-25-53_460_137319524724354518/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_01-59-20_189_8383634464027318555/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -649,7 +650,7 @@ PREHOOK: Input: default@combine2@value=val_8 PREHOOK: Input: default@combine2@value=val_9 PREHOOK: Input: default@combine2@value=| -PREHOOK: Output: file:/tmp/njain/hive_2010-11-10_21-25-53_911_2048118817573245123/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-59-20_426_4951132308735439785/-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 @@ -660,6 +661,7 @@ POSTHOOK: Input: default@combine2@value=val_8 POSTHOOK: Input: default@combine2@value=val_9 POSTHOOK: Input: default@combine2@value=| +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-59-20_426_4951132308735439785/-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), ] @@ -762,13 +764,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/njain/hive_2010-11-10_21-26-09_276_219776477941227748/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-59-24_870_111187028693807459/-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/sdong/hive_2011-02-09_01-59-24_870_111187028693807459/-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/input14.q.out =================================================================== --- ql/src/test/results/clientpositive/input14.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input14.q.out (working copy) @@ -89,7 +89,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -99,7 +99,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -130,11 +130,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-27-06_191_2622126223441202018/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-20-14_721_8470169232143526485/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-27-06_191_2622126223441202018/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-20-14_721_8470169232143526485/-mr-10000 POSTHOOK: Lineage: dest1.key SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] 0 val_0 Index: ql/src/test/results/clientpositive/join32.q.out =================================================================== --- ql/src/test/results/clientpositive/join32.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/join32.q.out (working copy) @@ -73,7 +73,7 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/liyintang/hive_2010-11-08_19-01-24_245_1589831135817422269/-mr-10003 + directory: file:/tmp/sdong/hive_2011-02-09_02-31-21_119_6690813165450143807/-mr-10003 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -89,9 +89,9 @@ Map Reduce Local Work Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/src [y] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src [y] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/src + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/src Partition base file name: src input format: org.apache.hadoop.mapred.TextInputFormat @@ -102,12 +102,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/liyintang/hive-1754/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1289268011 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -118,15 +118,15 @@ columns.types string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/src - name src + location pfile:/data/users/sdong/www/open-source-hive1/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 1289268011 + transient_lastDdlTime 1297243148 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: src - name: src + name: default.src + name: default.src Stage: Stage-9 Map Reduce Local Work @@ -162,7 +162,7 @@ Stage: Stage-1 Map Reduce Alias -> Map Operator Tree: - file:/tmp/liyintang/hive_2010-11-08_19-01-24_245_1589831135817422269/-mr-10003 + file:/tmp/sdong/hive_2011-02-09_02-31-21_119_6690813165450143807/-mr-10003 Select Operator expressions: expr: _col0 @@ -205,9 +205,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-01-24_245_1589831135817422269/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-21_119_6690813165450143807/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-01-24_245_1589831135817422269/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-21_119_6690813165450143807/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -217,14 +217,14 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, string val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289271684 + transient_lastDdlTime 1297247481 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -232,9 +232,9 @@ Map Reduce Local Work Needs Tagging: false Path -> Alias: - file:/tmp/liyintang/hive_2010-11-08_19-01-24_245_1589831135817422269/-mr-10003 [file:/tmp/liyintang/hive_2010-11-08_19-01-24_245_1589831135817422269/-mr-10003] + file:/tmp/sdong/hive_2011-02-09_02-31-21_119_6690813165450143807/-mr-10003 [file:/tmp/sdong/hive_2011-02-09_02-31-21_119_6690813165450143807/-mr-10003] Path -> Partition: - file:/tmp/liyintang/hive_2010-11-08_19-01-24_245_1589831135817422269/-mr-10003 + file:/tmp/sdong/hive_2011-02-09_02-31-21_119_6690813165450143807/-mr-10003 Partition base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat @@ -258,14 +258,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-01-24_245_1589831135817422269/-ext-10002 - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-01-24_245_1589831135817422269/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-21_119_6690813165450143807/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-21_119_6690813165450143807/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-01-24_245_1589831135817422269/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-21_119_6690813165450143807/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -275,28 +275,28 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, string val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289271684 + transient_lastDdlTime 1297247481 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 - tmp directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-01-24_245_1589831135817422269/-ext-10001 + name: default.dest_j1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-21_119_6690813165450143807/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-01-24_245_1589831135817422269/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-21_119_6690813165450143807/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-01-24_245_1589831135817422269/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-21_119_6690813165450143807/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-01-24_245_1589831135817422269/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-21_119_6690813165450143807/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -307,22 +307,22 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, string val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289271684 + transient_lastDdlTime 1297247481 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 + name: default.dest_j1 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-01-24_245_1589831135817422269/-ext-10002 [pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-01-24_245_1589831135817422269/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-21_119_6690813165450143807/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-21_119_6690813165450143807/-ext-10002] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_19-01-24_245_1589831135817422269/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-31-21_119_6690813165450143807/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -333,12 +333,12 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, string val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289271684 + transient_lastDdlTime 1297247481 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -349,15 +349,15 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/dest_j1 - name dest_j1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest_j1 + name default.dest_j1 serialization.ddl struct dest_j1 { string key, string value, string val2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289271684 + transient_lastDdlTime 1297247481 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest_j1 - name: dest_j1 + name: default.dest_j1 + name: default.dest_j1 PREHOOK: query: INSERT OVERWRITE TABLE dest_j1 @@ -384,11 +384,11 @@ PREHOOK: query: select * from dest_j1 x order by x.key PREHOOK: type: QUERY PREHOOK: Input: default@dest_j1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_19-01-38_997_5755790132038550537/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-31-33_424_9024558251149114878/-mr-10000 POSTHOOK: query: select * from dest_j1 x order by x.key POSTHOOK: type: QUERY POSTHOOK: Input: default@dest_j1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_19-01-38_997_5755790132038550537/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-31-33_424_9024558251149114878/-mr-10000 POSTHOOK: Lineage: dest_j1.key SIMPLE [(src1)x.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.val2 EXPRESSION [(src)y.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest_j1.value SIMPLE [(srcpart)z.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/input_part1.q.out =================================================================== --- ql/src/test/results/clientpositive/input_part1.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/input_part1.q.out (working copy) @@ -65,9 +65,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-33-38_542_4254366096139103837/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-41_923_7322607568074524689/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-33-38_542_4254366096139103837/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-41_923_7322607568074524689/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -77,22 +77,22 @@ columns.types int:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value, string hr, string ds} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288391618 + transient_lastDdlTime 1297247141 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: true MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [srcpart] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 [srcpart] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=12 + pfile:/data/users/sdong/www/open-source-hive1/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 @@ -106,13 +106,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -123,16 +123,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Stage: Stage-5 Conditional Operator @@ -141,14 +141,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-33-38_542_4254366096139103837/-ext-10002 - destination: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-33-38_542_4254366096139103837/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-41_923_7322607568074524689/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-41_923_7322607568074524689/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-33-38_542_4254366096139103837/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-41_923_7322607568074524689/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -158,28 +158,28 @@ columns.types int:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value, string hr, string ds} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288391618 + transient_lastDdlTime 1297247141 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - tmp directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-33-38_542_4254366096139103837/-ext-10001 + name: default.dest1 + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-41_923_7322607568074524689/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-33-38_542_4254366096139103837/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-41_923_7322607568074524689/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-33-38_542_4254366096139103837/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-41_923_7322607568074524689/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-33-38_542_4254366096139103837/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-41_923_7322607568074524689/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -190,22 +190,22 @@ columns.types int:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value, string hr, string ds} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288391618 + transient_lastDdlTime 1297247141 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-33-38_542_4254366096139103837/-ext-10002 [pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-33-38_542_4254366096139103837/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-41_923_7322607568074524689/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-41_923_7322607568074524689/-ext-10002] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/scratchdir/hive_2010-10-29_15-33-38_542_4254366096139103837/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_02-25-41_923_7322607568074524689/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -216,12 +216,12 @@ columns.types int:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value, string hr, string ds} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288391618 + transient_lastDdlTime 1297247141 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -232,15 +232,15 @@ columns.types int:string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/dest1 - name dest1 + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/dest1 + name default.dest1 serialization.ddl struct dest1 { i32 key, string value, string hr, string ds} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1288391618 + transient_lastDdlTime 1297247141 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 - name: dest1 + name: default.dest1 + name: default.dest1 PREHOOK: query: FROM srcpart @@ -260,11 +260,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/sdong/hive_2010-10-29_15-33-43_333_7537062408520241529/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-25-46_972_776689398651658764/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/sdong/hive_2010-10-29_15-33-43_333_7537062408520241529/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-25-46_972_776689398651658764/-mr-10000 POSTHOOK: Lineage: dest1.ds SIMPLE [(srcpart)srcpart.FieldSchema(name:ds, type:string, comment:null), ] POSTHOOK: Lineage: dest1.hr SIMPLE [(srcpart)srcpart.FieldSchema(name:hr, type:string, comment:null), ] POSTHOOK: Lineage: dest1.key EXPRESSION [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/auto_join8.q.out =================================================================== --- ql/src/test/results/clientpositive/auto_join8.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/auto_join8.q.out (working copy) @@ -160,7 +160,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Local Work: Map Reduce Local Work @@ -172,7 +172,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -297,7 +297,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 PREHOOK: query: FROM ( @@ -339,11 +339,11 @@ PREHOOK: query: SELECT sum(hash(dest1.c1,dest1.c2,dest1.c3,dest1.c4)) FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-15_16-50-35_928_3795245960359144388/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-31-44_479_222979810578369160/-mr-10000 POSTHOOK: query: SELECT sum(hash(dest1.c1,dest1.c2,dest1.c3,dest1.c4)) FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-15_16-50-35_928_3795245960359144388/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_01-31-44_479_222979810578369160/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src1.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c2 SIMPLE [(src)src1.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c3 EXPRESSION [(src)src2.FieldSchema(name:key, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/groupby3_map_multi_distinct.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby3_map_multi_distinct.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby3_map_multi_distinct.q.out (working copy) @@ -175,7 +175,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -185,7 +185,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -237,11 +237,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/amarsri/hive_2010-10-20_02-58-52_499_6413045004889165690/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-09-11_894_3530853572542992436/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/amarsri/hive_2010-10-20_02-58-52_499_6413045004889165690/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-09-11_894_3530853572542992436/-mr-10000 POSTHOOK: Lineage: dest1.c1 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c10 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.c11 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/mapreduce4.q.out =================================================================== --- ql/src/test/results/clientpositive/mapreduce4.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/mapreduce4.q.out (working copy) @@ -92,7 +92,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -102,7 +102,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -133,11 +133,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-03-26_971_151682627493120411/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-05-30_233_5497075133052656590/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_17-03-26_971_151682627493120411/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-05-30_233_5497075133052656590/-mr-10000 POSTHOOK: Lineage: dest1.key SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.one SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] POSTHOOK: Lineage: dest1.ten SCRIPT [(src)src.FieldSchema(name:key, type:string, comment:default), (src)src.FieldSchema(name:value, type:string, comment:default), ] Index: ql/src/test/results/clientpositive/stats11.q.out =================================================================== --- ql/src/test/results/clientpositive/stats11.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/stats11.q.out (working copy) @@ -117,10 +117,10 @@ Alias Bucket Base File Name Mapping: b {srcbucket20.txt=[srcbucket20.txt, srcbucket22.txt], srcbucket21.txt=[srcbucket21.txt, srcbucket23.txt]} Alias Bucket File Name Mapping: - b {pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket20.txt, pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket22.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket21.txt, pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket23.txt]} + b {pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket20.txt, pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket22.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket21.txt, pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket23.txt]} Alias Bucket Output File Name Mapping: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt 0 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt 1 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt 0 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt 1 Stage: Stage-1 Map Reduce @@ -169,9 +169,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-31-38_084_5882852540626894180/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-19_340_11837943499259253/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-31-38_084_5882852540626894180/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-19_340_11837943499259253/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -181,14 +181,14 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289277098 + transient_lastDdlTime 1297251919 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -196,9 +196,9 @@ Map Reduce Local Work Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin [a] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin [a] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin Partition base file name: srcbucket_mapjoin input format: org.apache.hadoop.mapred.TextInputFormat @@ -210,12 +210,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/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin - name srcbucket_mapjoin + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin + name default.srcbucket_mapjoin serialization.ddl struct srcbucket_mapjoin { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289277090 + transient_lastDdlTime 1297251914 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -227,15 +227,15 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin - name srcbucket_mapjoin + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin + name default.srcbucket_mapjoin serialization.ddl struct srcbucket_mapjoin { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289277090 + transient_lastDdlTime 1297251914 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket_mapjoin - name: srcbucket_mapjoin + name: default.srcbucket_mapjoin + name: default.srcbucket_mapjoin Stage: Stage-5 Conditional Operator @@ -244,14 +244,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-31-38_084_5882852540626894180/-ext-10002 - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-31-38_084_5882852540626894180/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-19_340_11837943499259253/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-19_340_11837943499259253/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-31-38_084_5882852540626894180/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-19_340_11837943499259253/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -261,28 +261,28 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289277098 + transient_lastDdlTime 1297251919 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - tmp directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-31-38_084_5882852540626894180/-ext-10001 + name: default.bucketmapjoin_tmp_result + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-19_340_11837943499259253/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-31-38_084_5882852540626894180/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-19_340_11837943499259253/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-31-38_084_5882852540626894180/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-19_340_11837943499259253/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-31-38_084_5882852540626894180/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-19_340_11837943499259253/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -293,22 +293,22 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289277098 + transient_lastDdlTime 1297251919 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-31-38_084_5882852540626894180/-ext-10002 [pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-31-38_084_5882852540626894180/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-19_340_11837943499259253/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-19_340_11837943499259253/-ext-10002] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-31-38_084_5882852540626894180/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-19_340_11837943499259253/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -319,12 +319,12 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289277098 + transient_lastDdlTime 1297251919 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -335,15 +335,15 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result serialization.ddl struct bucketmapjoin_tmp_result { string key, string value1, string value2} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289277098 + transient_lastDdlTime 1297251919 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result PREHOOK: query: insert overwrite table bucketmapjoin_tmp_result @@ -368,11 +368,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_20-31-53_537_6021440350348908908/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-45-27_941_2298064458906676139/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_20-31-53_537_6021440350348908908/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-45-27_941_2298064458906676139/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_tmp_result.key SIMPLE [(srcbucket_mapjoin)a.FieldSchema(name:key, type:int, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_tmp_result.value1 SIMPLE [(srcbucket_mapjoin)a.FieldSchema(name:value, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_tmp_result.value2 SIMPLE [(srcbucket_mapjoin_part)b.FieldSchema(name:value, type:string, comment:null), ] @@ -421,11 +421,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_20-32-19_217_370638698081651509/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-45-42_884_530699726137952416/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_20-32-19_217_370638698081651509/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-45-42_884_530699726137952416/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value2 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value2, type:string, comment:null), ] @@ -464,14 +464,14 @@ PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_hash_result_1 PREHOOK: Input: default@bucketmapjoin_hash_result_2 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_20-32-30_131_6677259791124778332/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-45-50_899_8313726517884715149/-mr-10000 POSTHOOK: query: select a.key-b.key, a.value1-b.value1, a.value2-b.value2 from bucketmapjoin_hash_result_1 a left outer join bucketmapjoin_hash_result_2 b on a.key = b.key POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_hash_result_1 POSTHOOK: Input: default@bucketmapjoin_hash_result_2 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_20-32-30_131_6677259791124778332/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-45-50_899_8313726517884715149/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value2 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value2, type:string, comment:null), ] @@ -546,12 +546,12 @@ Alias Bucket Base File Name Mapping: a {srcbucket20.txt=[srcbucket20.txt], srcbucket21.txt=[srcbucket21.txt], srcbucket22.txt=[srcbucket20.txt], srcbucket23.txt=[srcbucket21.txt]} Alias Bucket File Name Mapping: - a {pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket20.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket21.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket22.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket23.txt=[pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt]} + a {pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket20.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket21.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket22.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket20.txt], pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket23.txt=[pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin/srcbucket21.txt]} Alias Bucket Output File Name Mapping: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket20.txt 0 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket21.txt 1 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket22.txt 2 - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket23.txt 3 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket20.txt 0 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket21.txt 1 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket22.txt 2 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08/srcbucket23.txt 3 Stage: Stage-1 Map Reduce @@ -600,9 +600,9 @@ File Output Operator compressed: false GlobalTableId: 1 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-32-35_603_7737558187075598476/-ext-10002 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-54_704_6112146995638723748/-ext-10002 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-32-35_603_7737558187075598476/-ext-10000/ + Stats Publishing Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-54_704_6112146995638723748/-ext-10000/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -612,8 +612,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 464 @@ -621,9 +621,9 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 8983 - transient_lastDdlTime 1289277139 + transient_lastDdlTime 1297251942 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: true MultiFileSpray: false @@ -631,9 +631,9 @@ Map Reduce Local Work Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08 [b] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08 [b] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08 Partition base file name: ds=2008-04-08 input format: org.apache.hadoop.mapred.TextInputFormat @@ -647,13 +647,13 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part - name srcbucket_mapjoin_part + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part/ds=2008-04-08 + name default.srcbucket_mapjoin_part partition_columns ds serialization.ddl struct srcbucket_mapjoin_part { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289277090 + transient_lastDdlTime 1297251914 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -665,16 +665,16 @@ columns.types int:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/srcbucket_mapjoin_part - name srcbucket_mapjoin_part + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/srcbucket_mapjoin_part + name default.srcbucket_mapjoin_part partition_columns ds serialization.ddl struct srcbucket_mapjoin_part { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - transient_lastDdlTime 1289277090 + transient_lastDdlTime 1297251914 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcbucket_mapjoin_part - name: srcbucket_mapjoin_part + name: default.srcbucket_mapjoin_part + name: default.srcbucket_mapjoin_part Stage: Stage-5 Conditional Operator @@ -683,14 +683,14 @@ Move Operator files: hdfs directory: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-32-35_603_7737558187075598476/-ext-10002 - destination: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-32-35_603_7737558187075598476/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-54_704_6112146995638723748/-ext-10002 + destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-54_704_6112146995638723748/-ext-10000 Stage: Stage-0 Move Operator tables: replace: true - source: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-32-35_603_7737558187075598476/-ext-10000 + source: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-54_704_6112146995638723748/-ext-10000 table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -700,8 +700,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 464 @@ -709,23 +709,23 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 8983 - transient_lastDdlTime 1289277139 + transient_lastDdlTime 1297251942 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - tmp directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-32-35_603_7737558187075598476/-ext-10001 + name: default.bucketmapjoin_tmp_result + tmp directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-54_704_6112146995638723748/-ext-10001 Stage: Stage-2 Stats-Aggr Operator - Stats Aggregation Key Prefix: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-32-35_603_7737558187075598476/-ext-10000/ + Stats Aggregation Key Prefix: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-54_704_6112146995638723748/-ext-10000/ Stage: Stage-3 Map Reduce Alias -> Map Operator Tree: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-32-35_603_7737558187075598476/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-54_704_6112146995638723748/-ext-10002 File Output Operator compressed: false GlobalTableId: 0 - directory: pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-32-35_603_7737558187075598476/-ext-10000 + directory: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-54_704_6112146995638723748/-ext-10000 NumFilesPerFileSink: 1 table: input format: org.apache.hadoop.mapred.TextInputFormat @@ -736,8 +736,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 464 @@ -745,17 +745,17 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 8983 - transient_lastDdlTime 1289277139 + transient_lastDdlTime 1297251942 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result TotalFiles: 1 GatherStats: false MultiFileSpray: false Needs Tagging: false Path -> Alias: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-32-35_603_7737558187075598476/-ext-10002 [pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-32-35_603_7737558187075598476/-ext-10002] + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-54_704_6112146995638723748/-ext-10002 [pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-54_704_6112146995638723748/-ext-10002] Path -> Partition: - pfile:/data/users/liyintang/hive-1754/build/ql/scratchdir/hive_2010-11-08_20-32-35_603_7737558187075598476/-ext-10002 + pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-09_03-45-54_704_6112146995638723748/-ext-10002 Partition base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat @@ -766,8 +766,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 464 @@ -775,7 +775,7 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 8983 - transient_lastDdlTime 1289277139 + transient_lastDdlTime 1297251942 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -786,8 +786,8 @@ columns.types string:string:string file.inputformat org.apache.hadoop.mapred.TextInputFormat file.outputformat org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat - location pfile:/data/users/liyintang/hive-1754/build/ql/test/data/warehouse/bucketmapjoin_tmp_result - name bucketmapjoin_tmp_result + location pfile:/data/users/sdong/www/open-source-hive1/build/ql/test/data/warehouse/bucketmapjoin_tmp_result + name default.bucketmapjoin_tmp_result numFiles 1 numPartitions 0 numRows 464 @@ -795,10 +795,10 @@ serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe totalSize 8983 - transient_lastDdlTime 1289277139 + transient_lastDdlTime 1297251942 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: bucketmapjoin_tmp_result - name: bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result + name: default.bucketmapjoin_tmp_result PREHOOK: query: insert overwrite table bucketmapjoin_tmp_result @@ -835,11 +835,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_20-32-53_587_6517504932310697157/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-46-03_511_3984538833131720090/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_20-32-53_587_6517504932310697157/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-46-03_511_3984538833131720090/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value2 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value2, type:string, comment:null), ] @@ -924,11 +924,11 @@ PREHOOK: query: select count(1) from bucketmapjoin_tmp_result PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_tmp_result -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_20-33-19_305_2833852308539498006/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-46-18_439_3614927916007992806/-mr-10000 POSTHOOK: query: select count(1) from bucketmapjoin_tmp_result POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_tmp_result -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_20-33-19_305_2833852308539498006/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-46-18_439_3614927916007992806/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] @@ -991,14 +991,14 @@ PREHOOK: type: QUERY PREHOOK: Input: default@bucketmapjoin_hash_result_1 PREHOOK: Input: default@bucketmapjoin_hash_result_2 -PREHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_20-33-31_287_7076595751326509650/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-46-26_546_2555070089244995869/-mr-10000 POSTHOOK: query: select a.key-b.key, a.value1-b.value1, a.value2-b.value2 from bucketmapjoin_hash_result_1 a left outer join bucketmapjoin_hash_result_2 b on a.key = b.key POSTHOOK: type: QUERY POSTHOOK: Input: default@bucketmapjoin_hash_result_1 POSTHOOK: Input: default@bucketmapjoin_hash_result_2 -POSTHOOK: Output: file:/tmp/liyintang/hive_2010-11-08_20-33-31_287_7076595751326509650/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_03-46-26_546_2555070089244995869/-mr-10000 POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.key EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:key, type:string, comment:null), ] POSTHOOK: Lineage: bucketmapjoin_hash_result_1.value1 EXPRESSION [(bucketmapjoin_tmp_result)bucketmapjoin_tmp_result.FieldSchema(name:value1, type:string, comment:null), ] Index: ql/src/test/results/clientpositive/groupby5_noskew.q.out =================================================================== --- ql/src/test/results/clientpositive/groupby5_noskew.q.out (revision 1068243) +++ ql/src/test/results/clientpositive/groupby5_noskew.q.out (working copy) @@ -80,7 +80,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-0 Move Operator @@ -90,7 +90,7 @@ input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: dest1 + name: default.dest1 Stage: Stage-2 Stats-Aggr Operator @@ -115,11 +115,11 @@ PREHOOK: query: SELECT dest1.* FROM dest1 PREHOOK: type: QUERY PREHOOK: Input: default@dest1 -PREHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-16-42_015_4352351780658798312/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-10-45_608_1231039226176721759/-mr-10000 POSTHOOK: query: SELECT dest1.* FROM dest1 POSTHOOK: type: QUERY POSTHOOK: Input: default@dest1 -POSTHOOK: Output: file:/tmp/nzhang/hive_2010-09-14_16-16-42_015_4352351780658798312/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-10-45_608_1231039226176721759/-mr-10000 POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ] POSTHOOK: Lineage: dest1.value EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ] 0 0.0 Index: ql/src/test/results/clientpositive/input23.q.out =================================================================== --- ql/src/test/results/clientpositive/input23.q.out (revision 1068243) +++ 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/hive-trunk/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=11 [a] Path -> Partition: - pfile:/data/users/sdong/www/hive-trunk/build/ql/test/data/warehouse/srcpart/ds=2008-04-08/hr=11 + pfile:/data/users/sdong/www/open-source-hive1/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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe input format: org.apache.hadoop.mapred.TextInputFormat @@ -87,16 +87,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/hive-trunk/build/ql/test/data/warehouse/srcpart - name srcpart + location pfile:/data/users/sdong/www/open-source-hive1/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 1288389287 + transient_lastDdlTime 1297243142 serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe - name: srcpart - name: srcpart + name: default.srcpart + name: default.srcpart Reduce Operator Tree: Join Operator condition map: @@ -134,9 +134,9 @@ File Output Operator compressed: false GlobalTableId: 0 - directory: file:/tmp/sdong/hive_2010-10-29_15-29-06_211_4226521001698904551/-ext-10001 + directory: file:/tmp/sdong/hive_2011-02-09_02-21-12_331_3729953399079785168/-ext-10001 NumFilesPerFileSink: 1 - Stats Publishing Key Prefix: file:/tmp/sdong/hive_2010-10-29_15-29-06_211_4226521001698904551/-ext-10001/ + Stats Publishing Key Prefix: file:/tmp/sdong/hive_2011-02-09_02-21-12_331_3729953399079785168/-ext-10001/ table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -156,8 +156,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_2010-10-29_15-29-06_367_5727139295221138616/-mr-10000 +PREHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-21-12_483_7543106899946267489/-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_2010-10-29_15-29-06_367_5727139295221138616/-mr-10000 +POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-09_02-21-12_483_7543106899946267489/-mr-10000 Index: ql/src/test/queries/clientpositive/database.q =================================================================== --- ql/src/test/queries/clientpositive/database.q (revision 1068243) +++ ql/src/test/queries/clientpositive/database.q (working copy) @@ -1,3 +1,5 @@ +set hive.support.concurrency = true; + SHOW DATABASES; -- CREATE with comment @@ -43,7 +45,6 @@ -- CREATE table in non-default DB CREATE TABLE test_table (col1 STRING) STORED AS TEXTFILE; SHOW TABLES; -SHOW TABLES FROM default; -- DESCRIBE table in non-default DB DESCRIBE test_table; @@ -57,7 +58,8 @@ DESCRIBE EXTENDED test_table_like; -- LOAD and SELECT -LOAD DATA LOCAL INPATH '../data/files/test.dat' OVERWRITE INTO TABLE test_table ; +LOAD DATA LOCAL INPATH '../data/files/test.dat' +OVERWRITE INTO TABLE test_table; SELECT * FROM test_table; -- DROP and CREATE w/o LOAD @@ -73,7 +75,6 @@ USE test_db; CREATE TABLE src (col1 STRING) STORED AS TEXTFILE; SHOW TABLES; -SHOW TABLES FROM test_db; SELECT * FROM src LIMIT 10; @@ -91,3 +92,84 @@ USE default; DROP DATABASE test_db; SHOW DATABASES; + +-- +-- Canonical Name Tests +-- + +CREATE DATABASE db1; +CREATE DATABASE db2; + +-- CREATE foreign table +CREATE TABLE db1.src(key STRING, value STRING) +STORED AS TEXTFILE; + +-- LOAD into foreign table +LOAD DATA LOCAL INPATH '../data/files/kv1.txt' +OVERWRITE INTO TABLE db1.src; + +-- SELECT from foreign table +SELECT * FROM db1.src; + +-- CREATE Partitioned foreign table +CREATE TABLE db1.srcpart(key STRING, value STRING) +PARTITIONED BY (ds STRING, hr STRING) +STORED AS TEXTFILE; + +-- LOAD data into Partitioned foreign table +LOAD DATA LOCAL INPATH '../data/files/kv1.txt' +OVERWRITE INTO TABLE db1.srcpart +PARTITION (ds='2008-04-08', hr='11'); + +-- SELECT from Partitioned foreign table +SELECT key, value FROM db1.srcpart +WHERE key < 100 AND ds='2008-04-08' AND hr='11'; + +-- SELECT JOINed product of two foreign tables +USE db2; +SELECT a.* FROM db1.src a JOIN default.src1 b +ON (a.key = b.key); + +-- CREATE TABLE AS SELECT from foreign table +CREATE TABLE conflict_name AS +SELECT value FROM default.src WHERE key = 66; + +-- CREATE foreign table +CREATE TABLE db1.conflict_name AS +SELECT value FROM db1.src WHERE key = 8; + +-- query tables with the same names in different DBs +SELECT * FROM ( + SELECT value FROM db1.conflict_name +UNION ALL + SELECT value FROM conflict_name +) subq ORDER BY value; + +USE default; +SELECT * FROM ( + SELECT value FROM db1.conflict_name +UNION ALL + SELECT value FROM db2.conflict_name +) subq ORDER BY value; + +-- TABLESAMPLES +CREATE TABLE bucketized_src (key INT, value STRING) +CLUSTERED BY (key) SORTED BY (key) INTO 1 BUCKETS; + +INSERT OVERWRITE TABLE bucketized_src +SELECT key, value FROM src WHERE key=66; + +SELECT key FROM bucketized_src TABLESAMPLE(BUCKET 1 out of 1); + +-- CREATE TABLE LIKE +CREATE TABLE db2.src1 LIKE default.src; + +USE db2; +DESC EXTENDED src1; + +-- character escaping +SELECT key FROM `default`.src ORDER BY key LIMIT 1; +SELECT key FROM `default`.`src` ORDER BY key LIMIT 1; +SELECT key FROM default.`src` ORDER BY key LIMIT 1; + +USE default; Index: ql/src/java/org/apache/hadoop/hive/ql/metadata/Hive.java =================================================================== --- ql/src/java/org/apache/hadoop/hive/ql/metadata/Hive.java (revision 1068243) +++ ql/src/java/org/apache/hadoop/hive/ql/metadata/Hive.java (working copy) @@ -309,7 +309,7 @@ throw new HiveException("columns not specified for table " + tableName); } - Table tbl = new Table(getCurrentDatabase(), tableName); + Table tbl = newTable(tableName); tbl.setInputFormatClass(fileInputFormat.getName()); tbl.setOutputFormatClass(fileOutputFormat.getName()); @@ -345,12 +345,13 @@ */ public void alterTable(String tblName, Table newTbl) throws InvalidOperationException, HiveException { + Table t = newTable(tblName); try { // Remove the DDL_TIME so it gets refreshed if (newTbl.getParameters() != null) { newTbl.getParameters().remove(Constants.DDL_TIME); } - getMSC().alter_table(getCurrentDatabase(), tblName, newTbl.getTTable()); + getMSC().alter_table(t.getDbName(), t.getTableName(), newTbl.getTTable()); } catch (MetaException e) { throw new HiveException("Unable to alter table.", e); } catch (TException e) { @@ -393,12 +394,13 @@ */ public void alterPartition(String tblName, Partition newPart) throws InvalidOperationException, HiveException { + Table t = newTable(tblName); try { // Remove the DDL time so that it gets refreshed if (newPart.getParameters() != null) { newPart.getParameters().remove(Constants.DDL_TIME); } - getMSC().alter_partition(getCurrentDatabase(), tblName, + getMSC().alter_partition(t.getDbName(), t.getTableName(), newPart.getTPartition()); } catch (MetaException e) { @@ -653,8 +655,21 @@ } } + public Index getIndex(String qualifiedIndexName) throws HiveException { + String[] names = getQualifiedNames(qualifiedIndexName); + switch (names.length) { + case 3: + return getIndex(names[0], names[1], names[2]); + case 2: + return getIndex(getCurrentDatabase(), names[0], names[1]); + default: + throw new HiveException("Invalid index name:" + qualifiedIndexName); + } + } + public Index getIndex(String baseTableName, String indexName) throws HiveException { - return this.getIndex(getCurrentDatabase(), baseTableName, indexName); + Table t = newTable(baseTableName); + return this.getIndex(t.getDbName(), t.getTableName(), indexName); } public Index getIndex(String dbName, String baseTableName, @@ -693,7 +708,8 @@ * thrown if the drop fails */ public void dropTable(String tableName) throws HiveException { - dropTable(getCurrentDatabase(), tableName, true, true); + Table t = newTable(tableName); + dropTable(t.getDbName(), t.getTableName(), true, true); } /** @@ -745,17 +761,31 @@ } /** - * Returns metadata for the table named tableName in the current database. + * Returns metadata for the table named tableName * @param tableName the name of the table * @return * @throws HiveException if there's an internal error or if the * table doesn't exist */ public Table getTable(final String tableName) throws HiveException { - return this.getTable(getCurrentDatabase(), tableName, true); + Table t = newTable(tableName); + return this.getTable(t.getDbName(), t.getTableName(), true); } /** + * Returns metadata for the table named tableName + * @param tableName the name of the table + * @param throwException controls whether an exception is thrown or a returns a null + * @return + * @throws HiveException if there's an internal error or if the + * table doesn't exist + */ + public Table getTable(final String tableName, boolean throwException) throws HiveException { + Table t = newTable(tableName); + return this.getTable(t.getDbName(), t.getTableName(), throwException); + } + + /** * Returns metadata of the table * * @param dbName @@ -767,7 +797,8 @@ * if there's an internal error or if the table doesn't exist */ public Table getTable(final String dbName, final String tableName) throws HiveException { - return this.getTable(dbName, tableName, true); + Table t = newTable(tableName); + return this.getTable(t.getDbName(), t.getTableName(), true); } /** @@ -1284,6 +1315,12 @@ return new Partition(tbl, tpart); } + public boolean dropPartition(String tblName, List part_vals, boolean deleteData) + throws HiveException { + Table t = newTable(tblName); + return dropPartition(t.getDbName(), t.getTableName(), part_vals, deleteData); + } + public boolean dropPartition(String db_name, String tbl_name, List part_vals, boolean deleteData) throws HiveException { try { @@ -1295,6 +1332,11 @@ } } + public List getPartitionNames(String tblName, short max) throws HiveException { + Table t = newTable(tblName); + return getPartitionNames(t.getDbName(), t.getTableName(), max); + } + public List getPartitionNames(String dbName, String tblName, short max) throws HiveException { List names = null; @@ -1476,7 +1518,7 @@ throw new HiveException(e); } } - + /** * Get all existing role names. * @@ -1860,4 +1902,27 @@ } return indexes; } + + public Table newTable(String tableName) throws HiveException { + String[] names = getQualifiedNames(tableName); + switch (names.length) { + case 2: + return new Table(names[0], names[1]); + case 1: + return new Table(getCurrentDatabase(), names[0]); + default: + try{ + throw new HiveException("Invalid table name: " + tableName); + }catch(Exception e) { + e.printStackTrace(); + } + throw new HiveException("Invalid table name: " + tableName); + } + } + + private static String[] getQualifiedNames(String qualifiedName) { + return qualifiedName.split("\\."); + } + + }; Index: ql/src/java/org/apache/hadoop/hive/ql/optimizer/ppr/PartitionPruner.java =================================================================== --- ql/src/java/org/apache/hadoop/hive/ql/optimizer/ppr/PartitionPruner.java (revision 1068243) +++ ql/src/java/org/apache/hadoop/hive/ql/optimizer/ppr/PartitionPruner.java (working copy) @@ -153,10 +153,12 @@ HiveConf conf, String alias, Map prunedPartitionsMap) throws HiveException { LOG.trace("Started pruning partiton"); + LOG.trace("dbname = " + tab.getDbName()); LOG.trace("tabname = " + tab.getTableName()); LOG.trace("prune Expression = " + prunerExpr); - String key = tab.getTableName() + ";"; + String key = tab.getDbName() + "." + tab.getTableName() + ";"; + if (prunerExpr != null) { key = key + prunerExpr.getExprString(); } Index: ql/src/java/org/apache/hadoop/hive/ql/exec/StatsTask.java =================================================================== --- ql/src/java/org/apache/hadoop/hive/ql/exec/StatsTask.java (revision 1068243) +++ ql/src/java/org/apache/hadoop/hive/ql/exec/StatsTask.java (working copy) @@ -355,9 +355,10 @@ parameters.put(StatsSetupConst.TOTAL_SIZE, Long.toString(newPartStats.getSize())); tPart.setParameters(parameters); - db.alterPartition(table.getTableName(), new Partition(table, tPart)); + String tableFullName = table.getDbName() + "." + table.getTableName(); + db.alterPartition(tableFullName, new Partition(table, tPart)); - console.printInfo("Partition " + table.getTableName() + partn.getSpec() + + console.printInfo("Partition " + tableFullName + partn.getSpec() + " stats: [" + newPartStats.toString() + ']'); } } @@ -374,10 +375,12 @@ parameters.put(StatsSetupConst.TOTAL_SIZE, Long.toString(tblStats.getSize())); tTable.setParameters(parameters); - db.alterTable(table.getTableName(), new Table(tTable)); + String tableFullName = table.getDbName() + "." + table.getTableName(); - console.printInfo("Table " + table.getTableName() + " stats: [" + tblStats.toString() + ']'); + db.alterTable(tableFullName, new Table(tTable)); + console.printInfo("Table " + tableFullName + " stats: [" + tblStats.toString() + ']'); + } catch (Exception e) { // return 0 since StatsTask should not fail the whole job console.printInfo("[Warning] could not update stats.", Index: ql/src/java/org/apache/hadoop/hive/ql/exec/DDLTask.java =================================================================== --- ql/src/java/org/apache/hadoop/hive/ql/exec/DDLTask.java (revision 1068243) +++ ql/src/java/org/apache/hadoop/hive/ql/exec/DDLTask.java (working copy) @@ -37,10 +37,10 @@ import java.util.Iterator; import java.util.List; import java.util.Map; -import java.util.Map.Entry; import java.util.Set; import java.util.SortedSet; import java.util.TreeSet; +import java.util.Map.Entry; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; @@ -93,7 +93,6 @@ import org.apache.hadoop.hive.ql.plan.AlterDatabaseDesc; import org.apache.hadoop.hive.ql.plan.AlterIndexDesc; import org.apache.hadoop.hive.ql.plan.AlterTableDesc; -import org.apache.hadoop.hive.ql.plan.AlterTableDesc.AlterTableTypes; import org.apache.hadoop.hive.ql.plan.AlterTableSimpleDesc; import org.apache.hadoop.hive.ql.plan.CreateDatabaseDesc; import org.apache.hadoop.hive.ql.plan.CreateIndexDesc; @@ -126,9 +125,9 @@ import org.apache.hadoop.hive.ql.plan.ShowTablesDesc; import org.apache.hadoop.hive.ql.plan.SwitchDatabaseDesc; import org.apache.hadoop.hive.ql.plan.UnlockTableDesc; +import org.apache.hadoop.hive.ql.plan.AlterTableDesc.AlterTableTypes; import org.apache.hadoop.hive.ql.plan.api.StageType; import org.apache.hadoop.hive.ql.security.authorization.Privilege; -import org.apache.hadoop.hive.ql.session.SessionState; import org.apache.hadoop.hive.serde.Constants; import org.apache.hadoop.hive.serde2.Deserializer; import org.apache.hadoop.hive.serde2.MetadataTypedColumnsetSerDe; @@ -139,12 +138,11 @@ import org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe; import org.apache.hadoop.hive.shims.HadoopShims; import org.apache.hadoop.hive.shims.ShimLoader; -import org.apache.hadoop.util.StringUtils; import org.apache.hadoop.util.ToolRunner; /** * DDLTask implementation. - * + * **/ public class DDLTask extends Task implements Serializable { private static final long serialVersionUID = 1L; @@ -567,7 +565,7 @@ String tableName = null; Table tableObj = null; Database dbObj = null; - + try { if (privSubjectDesc != null) { @@ -670,7 +668,7 @@ } } } - + for (PrincipalDesc principal : principals) { for (int i = 0; i < privBag.getPrivileges().size(); i++) { HiveObjectPrivilege objPrivs = privBag.getPrivileges().get(i); @@ -807,7 +805,7 @@ /** * Add a partition to a table. - * + * * @param db * Database to add the partition to. * @param addPartitionDesc @@ -1422,8 +1420,8 @@ List repairOutput = new ArrayList(); try { HiveMetaStoreChecker checker = new HiveMetaStoreChecker(db); - checker.checkMetastore(db.getCurrentDatabase(), msckDesc - .getTableName(), msckDesc.getPartSpecs(), result); + Table t = db.newTable(msckDesc.getTableName()); + checker.checkMetastore(t.getDbName(), t.getTableName(), msckDesc.getPartSpecs(), result); if (msckDesc.isRepairPartitions()) { Table table = db.getTable(msckDesc.getTableName()); for (CheckResult.PartitionResult part : result.getPartitionsNotInMs()) { @@ -1544,10 +1542,10 @@ return 1; } if (showParts.getPartSpec() != null) { - parts = db.getPartitionNames(db.getCurrentDatabase(), + parts = db.getPartitionNames(tbl.getDbName(), tbl.getTableName(), showParts.getPartSpec(), (short) -1); } else { - parts = db.getPartitionNames(db.getCurrentDatabase(), tbl.getTableName(), (short) -1); + parts = db.getPartitionNames(tbl.getDbName(), tbl.getTableName(), (short) -1); } // write the results in the file @@ -1595,7 +1593,7 @@ tbl = db.getTable(tableName); - indexes = db.getIndexes(db.getCurrentDatabase(), tbl.getTableName(), (short) -1); + indexes = db.getIndexes(tbl.getDbName(), tbl.getTableName(), (short) -1); // write the results in the file try { @@ -1908,7 +1906,7 @@ private HiveLockObject getHiveObject(String tabName, Map partSpec) throws HiveException { - Table tbl = db.getTable(MetaStoreUtils.DEFAULT_DATABASE_NAME, tabName); + Table tbl = db.getTable(tabName); if (tbl == null) { throw new HiveException("Table " + tabName + " does not exist "); } @@ -2205,7 +2203,7 @@ colPath.indexOf('.') == -1 ? colPath.length() : colPath.indexOf('.')); // describe the table - populate the output stream - Table tbl = db.getTable(db.getCurrentDatabase(), tableName, false); + Table tbl = db.getTable(tableName, false); Partition part = null; try { Path resFile = new Path(descTbl.getResFile()); @@ -2320,9 +2318,9 @@ PrivilegeGrantInfo grantInfo) throws IOException { String privilege = grantInfo.getPrivilege(); - int createTime = grantInfo.getCreateTime(); + int createTime = grantInfo.getCreateTime(); String grantor = grantInfo.getGrantor(); - + if (dbName != null) { writeKeyValuePair(outStream, "database", dbName); } @@ -2836,14 +2834,14 @@ } // drop the table - db.dropTable(db.getCurrentDatabase(), dropTbl.getTableName()); + db.dropTable(dropTbl.getTableName()); if (tbl != null) { work.getOutputs().add(new WriteEntity(tbl)); } } else { // get all partitions of the table List partitionNames = - db.getPartitionNames(db.getCurrentDatabase(), dropTbl.getTableName(), (short) -1); + db.getPartitionNames(dropTbl.getTableName(), (short) -1); Set> partitions = new HashSet>(); for (String partitionName : partitionNames) { try { @@ -2883,9 +2881,7 @@ // drop all existing partitions from the list for (Partition partition : partsToDelete) { console.printInfo("Dropping the partition " + partition.getName()); - db.dropPartition(db.getCurrentDatabase(), dropTbl.getTableName(), - partition.getValues(), true); // drop data for the - // partition + db.dropPartition(dropTbl.getTableName(), partition.getValues(), true); work.getOutputs().add(new WriteEntity(partition)); } } @@ -3010,7 +3006,7 @@ */ private int createTable(Hive db, CreateTableDesc crtTbl) throws HiveException { // create the table - Table tbl = new Table(db.getCurrentDatabase(), crtTbl.getTableName()); + Table tbl = db.newTable(crtTbl.getTableName()); if (crtTbl.getTblProps() != null) { tbl.getTTable().getParameters().putAll(crtTbl.getTblProps()); @@ -3167,8 +3163,13 @@ // Get the existing table Table tbl = db.getTable(crtTbl.getLikeTableName()); - tbl.setTableName(crtTbl.getTableName()); + // find out database name and table name of target table + String targetTableName = crtTbl.getTableName(); + Table newTable = db.newTable(targetTableName); + tbl.setDbName(newTable.getDbName()); + tbl.setTableName(newTable.getTableName()); + if (crtTbl.isExternal()) { tbl.setProperty("EXTERNAL", "TRUE"); } else { @@ -3203,7 +3204,7 @@ * Throws this exception if an unexpected error occurs. */ private int createView(Hive db, CreateViewDesc crtView) throws HiveException { - Table tbl = new Table(db.getCurrentDatabase(), crtView.getViewName()); + Table tbl = db.newTable(crtView.getViewName()); tbl.setTableType(TableType.VIRTUAL_VIEW); tbl.setSerializationLib(null); tbl.clearSerDeInfo(); Index: ql/src/java/org/apache/hadoop/hive/ql/parse/UnparseTranslator.java =================================================================== --- ql/src/java/org/apache/hadoop/hive/ql/parse/UnparseTranslator.java (revision 1068243) +++ ql/src/java/org/apache/hadoop/hive/ql/parse/UnparseTranslator.java (working copy) @@ -19,8 +19,8 @@ package org.apache.hadoop.hive.ql.parse; import java.util.ArrayList; +import java.util.List; import java.util.Map; -import java.util.List; import java.util.NavigableMap; import java.util.TreeMap; @@ -61,10 +61,10 @@ * The translation must not overlap with any previously * registered translations (unless it is identical to an * existing translation, in which case it is ignored). - * + * * @param node * target node whose subtree is to be replaced - * + * * @param replacementText * text to use as replacement */ @@ -113,8 +113,29 @@ } /** + * Register a translation for an tabName. + * + * @param node + * source node (which must be an tabName) to be replaced + */ + void addTableNameTranslation(ASTNode tableName) { + if (!enabled) { + return; + } + if (tableName.getToken().getType() == HiveParser.Identifier) { + addIdentifierTranslation(tableName); + return; + } + assert (tableName.getToken().getType() == HiveParser.TOK_TABNAME); + String replacementText = tableName.getText(); + replacementText = BaseSemanticAnalyzer.unescapeTableName(replacementText); + replacementText = HiveUtils.unparseIdentifier(replacementText); + addTranslation(tableName, replacementText); + } + + /** * Register a translation for an identifier. - * + * * @param node * source node (which must be an identifier) to be replaced */ @@ -158,7 +179,7 @@ /** * Apply all translations on the given token stream. - * + * * @param tokenRewriteStream * rewrite-capable stream */ Index: ql/src/java/org/apache/hadoop/hive/ql/parse/Hive.g =================================================================== --- ql/src/java/org/apache/hadoop/hive/ql/parse/Hive.g (revision 1068243) +++ ql/src/java/org/apache/hadoop/hive/ql/parse/Hive.g (working copy) @@ -1,3 +1,19 @@ +/** + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ grammar Hive; options @@ -213,6 +229,8 @@ TOK_DATABASEPROPERTIES; TOK_DBPROPLIST; TOK_ALTERDATABASE_PROPERTIES; +TOK_TABNAME; +TOK_TABSRC; } @@ -257,7 +275,7 @@ loadStatement @init { msgs.push("load statement"); } @after { msgs.pop(); } - : KW_LOAD KW_DATA (islocal=KW_LOCAL)? KW_INPATH (path=StringLiteral) (isoverwrite=KW_OVERWRITE)? KW_INTO KW_TABLE (tab=tabName) + : KW_LOAD KW_DATA (islocal=KW_LOCAL)? KW_INPATH (path=StringLiteral) (isoverwrite=KW_OVERWRITE)? KW_INTO KW_TABLE (tab=tableOrPartition) -> ^(TOK_LOAD $path $tab $islocal? $isoverwrite?) ; @@ -357,8 +375,8 @@ createTableStatement @init { msgs.push("create table statement"); } @after { msgs.pop(); } - : KW_CREATE (ext=KW_EXTERNAL)? KW_TABLE ifNotExists? name=Identifier - ( like=KW_LIKE likeName=Identifier + : KW_CREATE (ext=KW_EXTERNAL)? KW_TABLE ifNotExists? name=tableName + ( like=KW_LIKE likeName=tableName tableLocation? | (LPAREN columnNameTypeList RPAREN)? tableComment? @@ -388,7 +406,7 @@ @init { msgs.push("create index statement");} @after {msgs.pop();} : KW_CREATE KW_INDEX indexName=Identifier - KW_ON KW_TABLE tab=Identifier LPAREN indexedCols=columnNameList RPAREN + KW_ON KW_TABLE tab=tableName LPAREN indexedCols=columnNameList RPAREN KW_AS typeName=StringLiteral autoRebuild? indexPropertiesPrefixed? @@ -426,7 +444,7 @@ indexTblName @init { msgs.push("index table name");} @after {msgs.pop();} - : KW_IN KW_TABLE indexTbl=Identifier + : KW_IN KW_TABLE indexTbl=tableName ->^(TOK_CREATEINDEX_INDEXTBLNAME $indexTbl) ; @@ -454,14 +472,14 @@ dropIndexStatement @init { msgs.push("drop index statement");} @after {msgs.pop();} - : KW_DROP KW_INDEX ifExists? indexName=Identifier KW_ON tab=Identifier + : KW_DROP KW_INDEX ifExists? indexName=Identifier KW_ON tab=tableName ->^(TOK_DROPINDEX $indexName $tab ifExists?) ; dropTableStatement @init { msgs.push("drop statement"); } @after { msgs.pop(); } - : KW_DROP KW_TABLE ifExists? Identifier -> ^(TOK_DROPTABLE Identifier ifExists?) + : KW_DROP KW_TABLE ifExists? tableName -> ^(TOK_DROPTABLE tableName ifExists?) ; alterStatement @@ -708,7 +726,7 @@ @init { msgs.push("specifying table types"); } @after { msgs.pop(); } - : Identifier (DOT^ (Identifier | KW_ELEM_TYPE | KW_KEY_TYPE | KW_VALUE_TYPE))* + : tableName (DOT^ (Identifier | KW_ELEM_TYPE | KW_KEY_TYPE | KW_VALUE_TYPE))* ; partTypeExpr @@ -728,7 +746,7 @@ analyzeStatement @init { msgs.push("analyze statement"); } @after { msgs.pop(); } - : KW_ANALYZE KW_TABLE (parttype=partTypeExpr) KW_COMPUTE KW_STATISTICS -> ^(TOK_ANALYZE $parttype) + : KW_ANALYZE KW_TABLE (parttype=tableOrPartition) KW_COMPUTE KW_STATISTICS -> ^(TOK_ANALYZE $parttype) ; showStatement @@ -748,7 +766,7 @@ lockStatement @init { msgs.push("lock statement"); } @after { msgs.pop(); } - : KW_LOCK KW_TABLE Identifier partitionSpec? lockMode -> ^(TOK_LOCKTABLE Identifier lockMode partitionSpec?) + : KW_LOCK KW_TABLE tableName partitionSpec? lockMode -> ^(TOK_LOCKTABLE tableName lockMode partitionSpec?) ; lockMode @@ -760,7 +778,7 @@ unlockStatement @init { msgs.push("unlock statement"); } @after { msgs.pop(); } - : KW_UNLOCK KW_TABLE Identifier partitionSpec? -> ^(TOK_UNLOCKTABLE Identifier partitionSpec?) + : KW_UNLOCK KW_TABLE tableName partitionSpec? -> ^(TOK_UNLOCKTABLE tableName partitionSpec?) ; createRoleStatement @@ -897,7 +915,7 @@ msgs.push("create view statement"); } @after { msgs.pop(); } - : KW_CREATE KW_VIEW ifNotExists? name=Identifier + : KW_CREATE KW_VIEW ifNotExists? name=tableName (LPAREN columnNameCommentList RPAREN)? tableComment? tablePropertiesPrefixed? KW_AS @@ -913,7 +931,7 @@ dropViewStatement @init { msgs.push("drop view statement"); } @after { msgs.pop(); } - : KW_DROP KW_VIEW ifExists? Identifier -> ^(TOK_DROPVIEW Identifier ifExists?) + : KW_DROP KW_VIEW ifExists? viewName -> ^(TOK_DROPVIEW viewName ifExists?) ; showStmtIdentifier @@ -1306,7 +1324,7 @@ : KW_LOCAL KW_DIRECTORY StringLiteral -> ^(TOK_LOCAL_DIR StringLiteral) | KW_DIRECTORY StringLiteral -> ^(TOK_DIR StringLiteral) - | KW_TABLE tabName -> ^(tabName) + | KW_TABLE tableOrPartition -> ^(tableOrPartition) ; limitClause @@ -1432,9 +1450,10 @@ //----------------------------------------------------------------------------------- tableAllColumns - : - STAR -> ^(TOK_ALLCOLREF) - | Identifier DOT STAR -> ^(TOK_ALLCOLREF Identifier) + : STAR + -> ^(TOK_ALLCOLREF) + | tableName DOT STAR + -> ^(TOK_ALLCOLREF tableName) ; // (table|column) @@ -1535,11 +1554,36 @@ tableSource @init { msgs.push("table source"); } @after { msgs.pop(); } + : tabname=tableNameTok (ts=tableSample)? (alias=Identifier)? + -> ^(TOK_TABREF $tabname $ts? $alias?) + ; + +tableName +@init { msgs.push("table name"); } +@after { msgs.pop(); } : - tabname=Identifier (ts=tableSample)? (alias=Identifier)? -> ^(TOK_TABREF $tabname $ts? $alias?) + (db=Identifier DOT)? tab=Identifier + -> {null != $db}? { new ASTNode(new CommonToken(Identifier, $db.text + "." + $tab.text)) } + -> $tab + ; +tableNameTok +@init { msgs.push("table name"); } +@after { msgs.pop(); } + : (db=Identifier DOT)? tab=Identifier + -> {null != $db}? { new ASTNode(new CommonToken(TOK_TABNAME, $db.text + "." + $tab.text)) } + -> { new ASTNode(new CommonToken(TOK_TABNAME, $tab.text)) } ; +viewName +@init { msgs.push("view name"); } +@after { msgs.pop(); } + : + (db=Identifier DOT)? view=Identifier + -> {null != db}? { new ASTNode(new CommonToken(TOK_TABNAME, $db.text + "." + $view.text)) } + -> { new ASTNode(new CommonToken(TOK_TABNAME, $view.text)) } + ; + subQuerySource @init { msgs.push("subquery source"); } @after { msgs.pop(); } @@ -1867,9 +1911,9 @@ KW_TRUE^ | KW_FALSE^ ; -tabName +tableOrPartition : - Identifier partitionSpec? -> ^(TOK_TAB Identifier partitionSpec?) + tableName partitionSpec? -> ^(TOK_TAB tableName partitionSpec?) ; partitionSpec Index: ql/src/java/org/apache/hadoop/hive/ql/parse/BaseSemanticAnalyzer.java =================================================================== --- ql/src/java/org/apache/hadoop/hive/ql/parse/BaseSemanticAnalyzer.java (revision 1068243) +++ ql/src/java/org/apache/hadoop/hive/ql/parse/BaseSemanticAnalyzer.java (working copy) @@ -71,7 +71,7 @@ protected Context ctx; protected HashMap idToTableNameMap; - + public static int HIVE_COLUMN_ORDER_ASC = 1; public static int HIVE_COLUMN_ORDER_DESC = 0; @@ -307,6 +307,27 @@ } /** + * Escape a table name, which can be either `Identifier` or + * `Identifier`.`Identifier` + */ + public static String unescapeTableName(String val) { + if (val.charAt(0) == '`') { + int index = val.indexOf('`', 1); + if (index != -1 && index < val.length() - 1 && val.charAt(index + 1) == '.') { + return unescapeIdentifier(val.substring(0, index + 1)) + '.' + + unescapeIdentifier(val.substring(index + 2, val.length())); + } + } else if (val.charAt(val.length() - 1) == '`') { + int index = val.indexOf('`'); + if (index > 0 && index < val.length() - 1 && val.charAt(index - 1) == '.') { + return unescapeIdentifier(val.substring(0, index - 1)) + '.' + + unescapeIdentifier(val.substring(index, val.length())); + } + } + return unescapeIdentifier(val); + } + + /** * Remove the encapsulating "`" pair from the identifier. We allow users to * use "`" to escape identifier for table names, column names and aliases, in * case that coincide with Hive language keywords. @@ -719,7 +740,7 @@ } return partSpec; } - + public Hive getDb() { return db; } Index: ql/src/java/org/apache/hadoop/hive/ql/parse/SemanticAnalyzer.java =================================================================== --- ql/src/java/org/apache/hadoop/hive/ql/parse/SemanticAnalyzer.java (revision 1068243) +++ ql/src/java/org/apache/hadoop/hive/ql/parse/SemanticAnalyzer.java (working copy) @@ -27,9 +27,9 @@ import java.util.LinkedHashMap; import java.util.List; import java.util.Map; -import java.util.Map.Entry; import java.util.Set; import java.util.TreeSet; +import java.util.Map.Entry; import java.util.regex.Pattern; import java.util.regex.PatternSyntaxException; @@ -91,7 +91,6 @@ import org.apache.hadoop.hive.ql.optimizer.GenMRFileSink1; import org.apache.hadoop.hive.ql.optimizer.GenMROperator; import org.apache.hadoop.hive.ql.optimizer.GenMRProcContext; -import org.apache.hadoop.hive.ql.optimizer.GenMRProcContext.GenMapRedCtx; import org.apache.hadoop.hive.ql.optimizer.GenMRRedSink1; import org.apache.hadoop.hive.ql.optimizer.GenMRRedSink2; import org.apache.hadoop.hive.ql.optimizer.GenMRRedSink3; @@ -101,6 +100,7 @@ import org.apache.hadoop.hive.ql.optimizer.GenMapRedUtils; import org.apache.hadoop.hive.ql.optimizer.MapJoinFactory; import org.apache.hadoop.hive.ql.optimizer.Optimizer; +import org.apache.hadoop.hive.ql.optimizer.GenMRProcContext.GenMapRedCtx; import org.apache.hadoop.hive.ql.optimizer.physical.PhysicalContext; import org.apache.hadoop.hive.ql.optimizer.physical.PhysicalOptimizer; import org.apache.hadoop.hive.ql.optimizer.ppr.PartitionPruner; @@ -121,7 +121,6 @@ import org.apache.hadoop.hive.ql.plan.FetchWork; import org.apache.hadoop.hive.ql.plan.FileSinkDesc; import org.apache.hadoop.hive.ql.plan.FilterDesc; -import org.apache.hadoop.hive.ql.plan.FilterDesc.sampleDesc; import org.apache.hadoop.hive.ql.plan.ForwardDesc; import org.apache.hadoop.hive.ql.plan.GroupByDesc; import org.apache.hadoop.hive.ql.plan.HiveOperation; @@ -144,12 +143,13 @@ import org.apache.hadoop.hive.ql.plan.TableScanDesc; import org.apache.hadoop.hive.ql.plan.UDTFDesc; import org.apache.hadoop.hive.ql.plan.UnionDesc; +import org.apache.hadoop.hive.ql.plan.FilterDesc.sampleDesc; import org.apache.hadoop.hive.ql.session.SessionState; import org.apache.hadoop.hive.ql.session.SessionState.ResourceType; import org.apache.hadoop.hive.ql.udf.generic.GenericUDAFEvaluator; -import org.apache.hadoop.hive.ql.udf.generic.GenericUDAFEvaluator.Mode; import org.apache.hadoop.hive.ql.udf.generic.GenericUDFHash; import org.apache.hadoop.hive.ql.udf.generic.GenericUDTF; +import org.apache.hadoop.hive.ql.udf.generic.GenericUDAFEvaluator.Mode; import org.apache.hadoop.hive.serde.Constants; import org.apache.hadoop.hive.serde2.Deserializer; import org.apache.hadoop.hive.serde2.MetadataTypedColumnsetSerDe; @@ -157,9 +157,9 @@ import org.apache.hadoop.hive.serde2.SerDeUtils; import org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe; import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector; -import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector.Category; import org.apache.hadoop.hive.serde2.objectinspector.StructField; import org.apache.hadoop.hive.serde2.objectinspector.StructObjectInspector; +import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector.Category; import org.apache.hadoop.hive.serde2.typeinfo.TypeInfo; import org.apache.hadoop.hive.serde2.typeinfo.TypeInfoFactory; import org.apache.hadoop.hive.serde2.typeinfo.TypeInfoUtils; @@ -399,7 +399,7 @@ tableSamplePresent = true; } ASTNode tableTree = (ASTNode) (tabref.getChild(0)); - String alias = unescapeIdentifier(tabref.getChild(aliasIndex).getText()); + String alias = unescapeTableName(tabref.getChild(aliasIndex).getText()); // If the alias is already there then we have a conflict if (qb.exists(alias)) { throw new SemanticException(ErrorMsg.AMBIGUOUS_TABLE_ALIAS.getMsg(tabref @@ -422,7 +422,7 @@ qb.getParseInfo().setTabSample( alias, new TableSample( - unescapeIdentifier(sampleClause.getChild(0).getText()), + unescapeTableName(sampleClause.getChild(0).getText()), unescapeIdentifier(sampleClause.getChild(1).getText()), sampleCols)); if (unparseTranslator.isEnabled()) { @@ -433,13 +433,13 @@ } } // Insert this map into the stats - String table_name = unescapeIdentifier(tabref.getChild(0).getText()); + String table_name = unescapeTableName(tabref.getChild(0).getText()); qb.setTabAlias(alias, table_name); qb.addAlias(alias); qb.getParseInfo().setSrcForAlias(alias, tableTree); - unparseTranslator.addIdentifierTranslation(tableTree); + unparseTranslator.addTableNameTranslation(tableTree); if (aliasIndex != 0) { unparseTranslator.addIdentifierTranslation((ASTNode) tabref .getChild(aliasIndex)); @@ -6270,14 +6270,23 @@ String location = qb.getTableDesc().getLocation(); if (location == null) { // get the table's default location - location = conf.getVar(HiveConf.ConfVars.METASTOREWAREHOUSE); - assert (location.length() > 0); - if (location.charAt(location.length() - 1) != '/') { - location += '/'; + Table dumpTable; + Path targetPath; + try { + dumpTable = db.newTable(qb.getTableDesc().getTableName()); + Warehouse wh = new Warehouse(conf); + targetPath = wh.getDefaultTablePath(dumpTable.getDbName(), dumpTable + .getTableName()); + } catch (HiveException e) { + throw new SemanticException(e); + } catch (MetaException e) { + throw new SemanticException(e); } - location += qb.getTableDesc().getTableName().toLowerCase(); + + location = targetPath.toString(); } lfd.setTargetDir(location); + oneLoadFile = false; } mvTask.add(TaskFactory.get(new MoveWork(null, null, null, lfd, false), @@ -6774,42 +6783,6 @@ return desc; } - /** - * Gets the table Alias for the column from the column name. This function - * throws and exception in case the same column name is present in multiple - * table. The exception message indicates that the ambiguity could not be - * resolved. - * - * @param qbm - * The metadata where the function looks for the table alias - * @param colName - * The name of the non aliased column - * @param pt - * The parse tree corresponding to the column(this is used for error - * reporting) - * @return String - * @throws SemanticException - */ - static String getTabAliasForCol(QBMetaData qbm, String colName, ASTNode pt) - throws SemanticException { - String tabAlias = null; - boolean found = false; - - for (Map.Entry ent : qbm.getAliasToTable().entrySet()) { - for (FieldSchema field : ent.getValue().getAllCols()) { - if (colName.equalsIgnoreCase(field.getName())) { - if (found) { - throw new SemanticException(ErrorMsg.AMBIGUOUS_COLUMN.getMsg(pt)); - } - - found = true; - tabAlias = ent.getKey(); - } - } - } - return tabAlias; - } - @Override public void validate() throws SemanticException { // Validate inputs and outputs have right protectmode to execute the query @@ -7104,6 +7077,7 @@ case CREATE_TABLE: // REGULAR CREATE TABLE DDL tblProps = addDefaultProperties(tblProps); + crtTblDesc = new CreateTableDesc(tableName, isExt, cols, partCols, bucketCols, sortCols, numBuckets, rowFormatParams.fieldDelim, rowFormatParams.fieldEscape, rowFormatParams.collItemDelim, rowFormatParams.mapKeyDelim, rowFormatParams.lineDelim, comment, @@ -7130,7 +7104,8 @@ // Verify that the table does not already exist try { - if (null != db.getTable(db.getCurrentDatabase(), tableName, false)) { + Table dumpTable = db.newTable(tableName); + if (null != db.getTable(dumpTable.getDbName(), dumpTable.getTableName(), false)) { throw new SemanticException(ErrorMsg.TABLE_ALREADY_EXISTS.getMsg(tableName)); } } catch (HiveException e) { Index: ql/src/java/org/apache/hadoop/hive/ql/Driver.java =================================================================== --- ql/src/java/org/apache/hadoop/hive/ql/Driver.java (revision 1068243) +++ ql/src/java/org/apache/hadoop/hive/ql/Driver.java (working copy) @@ -568,6 +568,8 @@ if (t != null) { locks.add(new HiveLockObj(new HiveLockObject(t, lockData), mode)); + mode = HiveLockMode.SHARED; + locks.add(new HiveLockObj(new HiveLockObject(t.getDbName(), lockData), mode)); return locks; } @@ -605,6 +607,7 @@ } locks.add(new HiveLockObj(new HiveLockObject(p.getTable(), lockData), mode)); + locks.add(new HiveLockObj(new HiveLockObject(p.getTable().getDbName(), lockData), mode)); } return locks; }