From 3c0f6a081596a52c764a04103f7aaca29387ec64 Mon Sep 17 00:00:00 2001 From: Ashutosh Chauhan Date: Thu, 1 Oct 2015 15:41:40 -0700 Subject: [PATCH] HIVE-12010 : Tests should use FileSystem based stats collection mechanism --- data/conf/hive-site.xml | 6 - .../hive/ql/io/rcfile/stats/PartialScanMapper.java | 4 +- .../auto_join_reordering_values.q.out | 6 +- .../clientpositive/binary_output_format.q.out | 4 +- ql/src/test/results/clientpositive/bucket4.q.out | 8 +- ql/src/test/results/clientpositive/bucket5.q.out | 10 +- .../test/results/clientpositive/bucket_many.q.out | 8 +- .../results/clientpositive/bucketmapjoin1.q.out | 8 +- .../results/clientpositive/bucketmapjoin2.q.out | 12 +- .../results/clientpositive/bucketmapjoin3.q.out | 8 +- .../results/clientpositive/bucketmapjoin4.q.out | 8 +- .../results/clientpositive/bucketmapjoin5.q.out | 8 +- .../clientpositive/bucketmapjoin_negative.q.out | 4 +- .../clientpositive/bucketmapjoin_negative2.q.out | 4 +- ql/src/test/results/clientpositive/ctas.q.out | 2 +- .../disable_merge_for_bucketing.q.out | 12 +- .../encryption_insert_partition_dynamic.q.out | 20 +- .../encryption_join_unencrypted_tbl.q.out | 22 +- ...ption_join_with_different_encryption_keys.q.out | 36 +- .../clientpositive/filter_join_breaktask.q.out | 2 +- .../results/clientpositive/groupby_sort_1_23.q.out | 44 +- .../clientpositive/groupby_sort_skew_1_23.q.out | 58 +- .../infer_bucket_sort_bucketed_table.q.out | 4 +- .../infer_bucket_sort_dyn_part.q.out | 32 +- .../infer_bucket_sort_map_operators.q.out | 38 +- .../clientpositive/infer_bucket_sort_merge.q.out | 8 +- .../infer_bucket_sort_num_buckets.q.out | 8 +- .../infer_bucket_sort_reducers_power_two.q.out | 24 +- .../test/results/clientpositive/input_part1.q.out | 4 +- .../test/results/clientpositive/input_part2.q.out | 8 +- ql/src/test/results/clientpositive/join26.q.out | 4 +- .../results/clientpositive/join32_lessSize.q.out | 10 +- ql/src/test/results/clientpositive/join35.q.out | 4 +- .../test/results/clientpositive/join_map_ppr.q.out | 8 +- .../list_bucket_dml_10.q.java1.7.out | 4 +- ql/src/test/results/clientpositive/merge3.q.out | 12 +- .../results/clientpositive/metadataonly1.q.out | 88 +- .../results/clientpositive/optimize_nullscan.q.out | 106 +- .../results/clientpositive/parallel_orderby.q.out | 8 +- ql/src/test/results/clientpositive/pcr.q.out | 20 +- .../test/results/clientpositive/pointlookup2.q.out | 8 +- .../test/results/clientpositive/pointlookup3.q.out | 6 +- .../results/clientpositive/ppd_join_filter.q.out | 8 +- .../results/clientpositive/ppd_union_view.q.out | 4 +- ql/src/test/results/clientpositive/ppd_vc.q.out | 2 +- .../clientpositive/rand_partitionpruner2.q.out | 4 +- ql/src/test/results/clientpositive/sample1.q.out | 4 +- ql/src/test/results/clientpositive/sample10.q.out | 2 +- ql/src/test/results/clientpositive/sample2.q.out | 4 +- ql/src/test/results/clientpositive/sample4.q.out | 4 +- ql/src/test/results/clientpositive/sample5.q.out | 4 +- ql/src/test/results/clientpositive/sample6.q.out | 4 +- ql/src/test/results/clientpositive/sample7.q.out | 4 +- ql/src/test/results/clientpositive/stats0.q.out | 4 +- ql/src/test/results/clientpositive/stats11.q.out | 8 +- .../test/results/clientpositive/udtf_explode.q.out | 4 +- ql/src/test/results/clientpositive/union22.q.out | 2 +- ql/src/test/results/clientpositive/union24.q.out | 8 +- .../results/clientpositive/unionDistinct_1.q.out | 14 +- .../results/clientpositive/vectorized_ptf.q.out | 70 +- 65 files changed, 1030 insertions(+), 1042 deletions(-) diff --git a/data/conf/hive-site.xml b/data/conf/hive-site.xml index a58017e..acb7569 100644 --- a/data/conf/hive-site.xml +++ b/data/conf/hive-site.xml @@ -206,12 +206,6 @@ - hive.stats.dbclass - jdbc:derby - The storage for temporary stats generated by tasks. Currently, jdbc, hbase and counter types are supported - - - hive.stats.key.prefix.reserve.length 0 diff --git a/ql/src/java/org/apache/hadoop/hive/ql/io/rcfile/stats/PartialScanMapper.java b/ql/src/java/org/apache/hadoop/hive/ql/io/rcfile/stats/PartialScanMapper.java index be3a671..2a7e979 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/io/rcfile/stats/PartialScanMapper.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/io/rcfile/stats/PartialScanMapper.java @@ -33,8 +33,8 @@ import org.apache.hadoop.hive.ql.io.rcfile.merge.RCFileKeyBufferWrapper; import org.apache.hadoop.hive.ql.io.rcfile.merge.RCFileValueBufferWrapper; import org.apache.hadoop.hive.ql.metadata.HiveException; -import org.apache.hadoop.hive.ql.stats.CounterStatsPublisher; import org.apache.hadoop.hive.ql.stats.StatsCollectionContext; +import org.apache.hadoop.hive.ql.stats.StatsCollectionTaskIndependent; import org.apache.hadoop.hive.ql.stats.StatsFactory; import org.apache.hadoop.hive.ql.stats.StatsPublisher; import org.apache.hadoop.hive.shims.CombineHiveKey; @@ -157,7 +157,7 @@ private void publishStats() throws HiveException { int maxPrefixLength = StatsFactory.getMaxPrefixLength(jc); // construct key used to store stats in intermediate db String key = Utilities.getHashedStatsPrefix(statsAggKeyPrefix, maxPrefixLength); - if (!(statsPublisher instanceof CounterStatsPublisher)) { + if (!(statsPublisher instanceof StatsCollectionTaskIndependent)) { String taskID = Utilities.getTaskIdFromFilename(Utilities.getTaskId(jc)); key = Utilities.join(key, taskID); } diff --git a/ql/src/test/results/clientpositive/auto_join_reordering_values.q.out b/ql/src/test/results/clientpositive/auto_join_reordering_values.q.out index 9e3ebec..1a54d01 100644 --- a/ql/src/test/results/clientpositive/auto_join_reordering_values.q.out +++ b/ql/src/test/results/clientpositive/auto_join_reordering_values.q.out @@ -319,7 +319,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -445,7 +445,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10004 + base file name: -mr-10005 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -571,7 +571,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10005 + base file name: -mr-10006 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/binary_output_format.q.out b/ql/src/test/results/clientpositive/binary_output_format.q.out index a0e8e83..30d0037 100644 --- a/ql/src/test/results/clientpositive/binary_output_format.q.out +++ b/ql/src/test/results/clientpositive/binary_output_format.q.out @@ -272,7 +272,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveBinaryOutputFormat properties: @@ -344,7 +344,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveBinaryOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/bucket4.q.out b/ql/src/test/results/clientpositive/bucket4.q.out index 9eeb13d..e0e5fa6 100644 --- a/ql/src/test/results/clientpositive/bucket4.q.out +++ b/ql/src/test/results/clientpositive/bucket4.q.out @@ -196,17 +196,17 @@ STAGE PLANS: Map Operator Tree: TableScan alias: s - Statistics: Num rows: 55 Data size: 5812 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE Filter Operator predicate: (((hash(key) & 2147483647) % 2) = 0) (type: boolean) - Statistics: Num rows: 27 Data size: 2853 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE Select Operator expressions: key (type: int), value (type: string) outputColumnNames: _col0, _col1 - Statistics: Num rows: 27 Data size: 2853 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE File Output Operator compressed: false - Statistics: Num rows: 27 Data size: 2853 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat diff --git a/ql/src/test/results/clientpositive/bucket5.q.out b/ql/src/test/results/clientpositive/bucket5.q.out index 2e2984b..c1dd90d 100644 --- a/ql/src/test/results/clientpositive/bucket5.q.out +++ b/ql/src/test/results/clientpositive/bucket5.q.out @@ -250,7 +250,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -372,7 +372,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10003 + base file name: -ext-10005 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -441,7 +441,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10003 + base file name: -ext-10005 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -521,8 +521,8 @@ Table Parameters: COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE numFiles 2 - numRows 0 - rawDataSize 0 + numRows 500 + rawDataSize 5312 totalSize 5812 #### A masked pattern was here #### diff --git a/ql/src/test/results/clientpositive/bucket_many.q.out b/ql/src/test/results/clientpositive/bucket_many.q.out index 9f09163..04ec255 100644 --- a/ql/src/test/results/clientpositive/bucket_many.q.out +++ b/ql/src/test/results/clientpositive/bucket_many.q.out @@ -193,17 +193,17 @@ STAGE PLANS: Map Operator Tree: TableScan alias: s - Statistics: Num rows: 55 Data size: 5812 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE Filter Operator predicate: (((hash(key) & 2147483647) % 256) = 0) (type: boolean) - Statistics: Num rows: 27 Data size: 2853 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE Select Operator expressions: key (type: int), value (type: string) outputColumnNames: _col0, _col1 - Statistics: Num rows: 27 Data size: 2853 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE File Output Operator compressed: false - Statistics: Num rows: 27 Data size: 2853 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat diff --git a/ql/src/test/results/clientpositive/bucketmapjoin1.q.out b/ql/src/test/results/clientpositive/bucketmapjoin1.q.out index 471ff73..4fcc583 100644 --- a/ql/src/test/results/clientpositive/bucketmapjoin1.q.out +++ b/ql/src/test/results/clientpositive/bucketmapjoin1.q.out @@ -776,7 +776,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -845,7 +845,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -1287,7 +1287,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -1371,7 +1371,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/bucketmapjoin2.q.out b/ql/src/test/results/clientpositive/bucketmapjoin2.q.out index a8d9e9d..aa33415 100644 --- a/ql/src/test/results/clientpositive/bucketmapjoin2.q.out +++ b/ql/src/test/results/clientpositive/bucketmapjoin2.q.out @@ -419,7 +419,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -488,7 +488,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -980,7 +980,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -1064,7 +1064,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -1623,7 +1623,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -1707,7 +1707,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/bucketmapjoin3.q.out b/ql/src/test/results/clientpositive/bucketmapjoin3.q.out index c759f05..f49b3cd 100644 --- a/ql/src/test/results/clientpositive/bucketmapjoin3.q.out +++ b/ql/src/test/results/clientpositive/bucketmapjoin3.q.out @@ -450,7 +450,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -519,7 +519,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -1018,7 +1018,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -1102,7 +1102,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/bucketmapjoin4.q.out b/ql/src/test/results/clientpositive/bucketmapjoin4.q.out index f61500c..348725c 100644 --- a/ql/src/test/results/clientpositive/bucketmapjoin4.q.out +++ b/ql/src/test/results/clientpositive/bucketmapjoin4.q.out @@ -385,7 +385,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -454,7 +454,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -876,7 +876,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -960,7 +960,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/bucketmapjoin5.q.out b/ql/src/test/results/clientpositive/bucketmapjoin5.q.out index 0cb2825..6c4ebb3 100644 --- a/ql/src/test/results/clientpositive/bucketmapjoin5.q.out +++ b/ql/src/test/results/clientpositive/bucketmapjoin5.q.out @@ -488,7 +488,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -557,7 +557,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -1044,7 +1044,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -1128,7 +1128,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/bucketmapjoin_negative.q.out b/ql/src/test/results/clientpositive/bucketmapjoin_negative.q.out index 6ae127d..dcee44f 100644 --- a/ql/src/test/results/clientpositive/bucketmapjoin_negative.q.out +++ b/ql/src/test/results/clientpositive/bucketmapjoin_negative.q.out @@ -381,7 +381,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -450,7 +450,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/bucketmapjoin_negative2.q.out b/ql/src/test/results/clientpositive/bucketmapjoin_negative2.q.out index 4c9f54a..25e70ea 100644 --- a/ql/src/test/results/clientpositive/bucketmapjoin_negative2.q.out +++ b/ql/src/test/results/clientpositive/bucketmapjoin_negative2.q.out @@ -436,7 +436,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -505,7 +505,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/ctas.q.out b/ql/src/test/results/clientpositive/ctas.q.out index 24cabc5..048eadd 100644 --- a/ql/src/test/results/clientpositive/ctas.q.out +++ b/ql/src/test/results/clientpositive/ctas.q.out @@ -836,7 +836,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/disable_merge_for_bucketing.q.out b/ql/src/test/results/clientpositive/disable_merge_for_bucketing.q.out index a0edd3b..c75d396 100644 --- a/ql/src/test/results/clientpositive/disable_merge_for_bucketing.q.out +++ b/ql/src/test/results/clientpositive/disable_merge_for_bucketing.q.out @@ -193,27 +193,27 @@ STAGE PLANS: Map Operator Tree: TableScan alias: s - Statistics: Num rows: 55 Data size: 5812 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE Filter Operator predicate: (((hash(key) & 2147483647) % 2) = 0) (type: boolean) - Statistics: Num rows: 27 Data size: 2853 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE Select Operator expressions: key (type: int), value (type: string) outputColumnNames: _col0, _col1 - Statistics: Num rows: 27 Data size: 2853 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE Reduce Output Operator key expressions: _col0 (type: int) sort order: + - Statistics: Num rows: 27 Data size: 2853 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE value expressions: _col1 (type: string) Reduce Operator Tree: Select Operator expressions: KEY.reducesinkkey0 (type: int), VALUE._col0 (type: string) outputColumnNames: _col0, _col1 - Statistics: Num rows: 27 Data size: 2853 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE File Output Operator compressed: false - Statistics: Num rows: 27 Data size: 2853 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat diff --git a/ql/src/test/results/clientpositive/encrypted/encryption_insert_partition_dynamic.q.out b/ql/src/test/results/clientpositive/encrypted/encryption_insert_partition_dynamic.q.out index 6b280b1..3ed1fdb 100644 --- a/ql/src/test/results/clientpositive/encrypted/encryption_insert_partition_dynamic.q.out +++ b/ql/src/test/results/clientpositive/encrypted/encryption_insert_partition_dynamic.q.out @@ -385,7 +385,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10001 + base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -554,16 +554,16 @@ STAGE PLANS: Map Operator Tree: TableScan alias: encryptedtable - Statistics: Num rows: 21 Data size: 2372 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 4 Data size: 2372 Basic stats: COMPLETE Column stats: NONE GatherStats: false Select Operator expressions: value (type: string), key (type: string) outputColumnNames: _col0, _col1 - Statistics: Num rows: 21 Data size: 2372 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 4 Data size: 2372 Basic stats: COMPLETE Column stats: NONE Reduce Output Operator sort order: Map-reduce partition columns: _col0 (type: string) - Statistics: Num rows: 21 Data size: 2372 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 4 Data size: 2372 Basic stats: COMPLETE Column stats: NONE tag: -1 value expressions: _col0 (type: string), _col1 (type: string) auto parallelism: false @@ -587,7 +587,7 @@ STAGE PLANS: #### A masked pattern was here #### name default.encryptedtable numFiles 1 - numRows 0 + numRows 1 partition_columns key partition_columns.types string rawDataSize 0 @@ -635,7 +635,7 @@ STAGE PLANS: #### A masked pattern was here #### name default.encryptedtable numFiles 1 - numRows 0 + numRows 1 partition_columns key partition_columns.types string rawDataSize 0 @@ -683,7 +683,7 @@ STAGE PLANS: #### A masked pattern was here #### name default.encryptedtable numFiles 1 - numRows 0 + numRows 1 partition_columns key partition_columns.types string rawDataSize 0 @@ -731,7 +731,7 @@ STAGE PLANS: #### A masked pattern was here #### name default.encryptedtable numFiles 1 - numRows 0 + numRows 1 partition_columns key partition_columns.types string rawDataSize 0 @@ -772,13 +772,13 @@ STAGE PLANS: Select Operator expressions: VALUE._col0 (type: string), VALUE._col1 (type: string) outputColumnNames: _col0, _col1 - Statistics: Num rows: 21 Data size: 2372 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 4 Data size: 2372 Basic stats: COMPLETE Column stats: NONE File Output Operator compressed: false GlobalTableId: 1 #### A PARTIAL masked pattern was here #### data/warehouse/unencryptedtable/.hive-staging NumFilesPerFileSink: 1 - Statistics: Num rows: 21 Data size: 2372 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 4 Data size: 2372 Basic stats: COMPLETE Column stats: NONE #### A PARTIAL masked pattern was here #### data/warehouse/unencryptedtable/.hive-staging table: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat diff --git a/ql/src/test/results/clientpositive/encrypted/encryption_join_unencrypted_tbl.q.out b/ql/src/test/results/clientpositive/encrypted/encryption_join_unencrypted_tbl.q.out index 644c3ed..a42ed2c 100644 --- a/ql/src/test/results/clientpositive/encrypted/encryption_join_unencrypted_tbl.q.out +++ b/ql/src/test/results/clientpositive/encrypted/encryption_join_unencrypted_tbl.q.out @@ -598,17 +598,17 @@ STAGE PLANS: auto parallelism: false TableScan alias: t2 - Statistics: Num rows: 55 Data size: 5812 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE GatherStats: false Filter Operator isSamplingPred: false predicate: UDFToDouble(key) is not null (type: boolean) - Statistics: Num rows: 28 Data size: 2958 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE Reduce Output Operator key expressions: UDFToDouble(key) (type: double) sort order: + Map-reduce partition columns: UDFToDouble(key) (type: double) - Statistics: Num rows: 28 Data size: 2958 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE tag: 1 value expressions: key (type: int), value (type: string) auto parallelism: false @@ -629,8 +629,8 @@ STAGE PLANS: #### A masked pattern was here #### name default.encrypted_table numFiles 1 - numRows 0 - rawDataSize 0 + numRows 500 + rawDataSize 5312 serialization.ddl struct encrypted_table { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe @@ -649,8 +649,8 @@ STAGE PLANS: #### A masked pattern was here #### name default.encrypted_table numFiles 1 - numRows 0 - rawDataSize 0 + numRows 500 + rawDataSize 5312 serialization.ddl struct encrypted_table { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe @@ -715,21 +715,21 @@ STAGE PLANS: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(key) (type: double) outputColumnNames: _col0, _col1, _col5, _col6 - Statistics: Num rows: 30 Data size: 3253 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Filter Operator isSamplingPred: false predicate: (_col0 = _col5) (type: boolean) - Statistics: Num rows: 15 Data size: 1626 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 137 Data size: 1455 Basic stats: COMPLETE Column stats: NONE Select Operator expressions: _col0 (type: string), _col1 (type: string), _col5 (type: int), _col6 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 - Statistics: Num rows: 15 Data size: 1626 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 137 Data size: 1455 Basic stats: COMPLETE Column stats: NONE File Output Operator compressed: false GlobalTableId: 0 #### A PARTIAL masked pattern was here #### data/warehouse/default/encrypted_table/.hive-staging NumFilesPerFileSink: 1 - Statistics: Num rows: 15 Data size: 1626 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 137 Data size: 1455 Basic stats: COMPLETE Column stats: NONE #### A PARTIAL masked pattern was here #### data/warehouse/default/encrypted_table/.hive-staging table: input format: org.apache.hadoop.mapred.TextInputFormat diff --git a/ql/src/test/results/clientpositive/encrypted/encryption_join_with_different_encryption_keys.q.out b/ql/src/test/results/clientpositive/encrypted/encryption_join_with_different_encryption_keys.q.out index 40f6898..790946f 100644 --- a/ql/src/test/results/clientpositive/encrypted/encryption_join_with_different_encryption_keys.q.out +++ b/ql/src/test/results/clientpositive/encrypted/encryption_join_with_different_encryption_keys.q.out @@ -102,33 +102,33 @@ STAGE PLANS: Map Operator Tree: TableScan alias: t1 - Statistics: Num rows: 55 Data size: 5812 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE GatherStats: false Filter Operator isSamplingPred: false predicate: key is not null (type: boolean) - Statistics: Num rows: 28 Data size: 2958 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE Reduce Output Operator key expressions: key (type: int) sort order: + Map-reduce partition columns: key (type: int) - Statistics: Num rows: 28 Data size: 2958 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE tag: 0 value expressions: value (type: string) auto parallelism: false TableScan alias: t2 - Statistics: Num rows: 55 Data size: 5812 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE GatherStats: false Filter Operator isSamplingPred: false predicate: key is not null (type: boolean) - Statistics: Num rows: 28 Data size: 2958 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE Reduce Output Operator key expressions: key (type: int) sort order: + Map-reduce partition columns: key (type: int) - Statistics: Num rows: 28 Data size: 2958 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE tag: 1 value expressions: value (type: string) auto parallelism: false @@ -149,8 +149,8 @@ STAGE PLANS: #### A masked pattern was here #### name default.table_key_1 numFiles 1 - numRows 0 - rawDataSize 0 + numRows 500 + rawDataSize 5312 serialization.ddl struct table_key_1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe @@ -169,8 +169,8 @@ STAGE PLANS: #### A masked pattern was here #### name default.table_key_1 numFiles 1 - numRows 0 - rawDataSize 0 + numRows 500 + rawDataSize 5312 serialization.ddl struct table_key_1 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe @@ -193,8 +193,8 @@ STAGE PLANS: #### A masked pattern was here #### name default.table_key_2 numFiles 1 - numRows 0 - rawDataSize 0 + numRows 500 + rawDataSize 5312 serialization.ddl struct table_key_2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe @@ -213,8 +213,8 @@ STAGE PLANS: #### A masked pattern was here #### name default.table_key_2 numFiles 1 - numRows 0 - rawDataSize 0 + numRows 500 + rawDataSize 5312 serialization.ddl struct table_key_2 { i32 key, string value} serialization.format 1 serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe @@ -235,21 +235,21 @@ STAGE PLANS: 0 key (type: int) 1 key (type: int) outputColumnNames: _col0, _col1, _col5, _col6 - Statistics: Num rows: 30 Data size: 3253 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Filter Operator isSamplingPred: false predicate: (_col0 = _col5) (type: boolean) - Statistics: Num rows: 15 Data size: 1626 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 137 Data size: 1455 Basic stats: COMPLETE Column stats: NONE Select Operator expressions: _col0 (type: int), _col1 (type: string), _col5 (type: int), _col6 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 - Statistics: Num rows: 15 Data size: 1626 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 137 Data size: 1455 Basic stats: COMPLETE Column stats: NONE File Output Operator compressed: false GlobalTableId: 0 #### A PARTIAL masked pattern was here #### data/warehouse/table_key_2/.hive-staging NumFilesPerFileSink: 1 - Statistics: Num rows: 15 Data size: 1626 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 137 Data size: 1455 Basic stats: COMPLETE Column stats: NONE #### A PARTIAL masked pattern was here #### data/warehouse/table_key_2/.hive-staging table: input format: org.apache.hadoop.mapred.TextInputFormat diff --git a/ql/src/test/results/clientpositive/filter_join_breaktask.q.out b/ql/src/test/results/clientpositive/filter_join_breaktask.q.out index 83f4720..95b632f 100644 --- a/ql/src/test/results/clientpositive/filter_join_breaktask.q.out +++ b/ql/src/test/results/clientpositive/filter_join_breaktask.q.out @@ -285,7 +285,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/groupby_sort_1_23.q.out b/ql/src/test/results/clientpositive/groupby_sort_1_23.q.out index 8ba10c5..65716ea 100644 --- a/ql/src/test/results/clientpositive/groupby_sort_1_23.q.out +++ b/ql/src/test/results/clientpositive/groupby_sort_1_23.q.out @@ -260,7 +260,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -329,7 +329,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -865,7 +865,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -949,7 +949,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -1273,7 +1273,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -1357,7 +1357,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -1662,7 +1662,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -1731,7 +1731,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -2849,7 +2849,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -2933,7 +2933,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -3322,7 +3322,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -3471,7 +3471,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -3555,7 +3555,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -4199,7 +4199,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -4789,7 +4789,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -4873,7 +4873,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -5189,7 +5189,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -5258,7 +5258,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -5593,7 +5593,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -5677,7 +5677,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -6051,7 +6051,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -6135,7 +6135,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/groupby_sort_skew_1_23.q.out b/ql/src/test/results/clientpositive/groupby_sort_skew_1_23.q.out index 2a956fc..2ab9471 100644 --- a/ql/src/test/results/clientpositive/groupby_sort_skew_1_23.q.out +++ b/ql/src/test/results/clientpositive/groupby_sort_skew_1_23.q.out @@ -260,7 +260,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -329,7 +329,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -572,7 +572,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10001 + base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -930,7 +930,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -1014,7 +1014,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -1338,7 +1338,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -1422,7 +1422,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -1727,7 +1727,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -1796,7 +1796,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -2043,7 +2043,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10001 + base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -2329,7 +2329,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10001 + base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -2661,7 +2661,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10001 + base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -3109,7 +3109,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -3193,7 +3193,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -3499,7 +3499,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -3647,7 +3647,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -3796,7 +3796,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -3880,7 +3880,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -4503,7 +4503,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -4589,7 +4589,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10004 + base file name: -mr-10005 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -4883,7 +4883,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10001 + base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -5244,7 +5244,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -5328,7 +5328,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -5644,7 +5644,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -5713,7 +5713,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -6048,7 +6048,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -6132,7 +6132,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -6506,7 +6506,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -6590,7 +6590,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/infer_bucket_sort_bucketed_table.q.out b/ql/src/test/results/clientpositive/infer_bucket_sort_bucketed_table.q.out index 9503897..5573c0a 100644 --- a/ql/src/test/results/clientpositive/infer_bucket_sort_bucketed_table.q.out +++ b/ql/src/test/results/clientpositive/infer_bucket_sort_bucketed_table.q.out @@ -52,8 +52,8 @@ Table: test_table_bucketed Partition Parameters: COLUMN_STATS_ACCURATE true numFiles 3 - numRows 0 - rawDataSize 0 + numRows 309 + rawDataSize 1482 totalSize 1791 #### A masked pattern was here #### diff --git a/ql/src/test/results/clientpositive/infer_bucket_sort_dyn_part.q.out b/ql/src/test/results/clientpositive/infer_bucket_sort_dyn_part.q.out index a12dcd5..8beed5f 100644 --- a/ql/src/test/results/clientpositive/infer_bucket_sort_dyn_part.q.out +++ b/ql/src/test/results/clientpositive/infer_bucket_sort_dyn_part.q.out @@ -72,8 +72,8 @@ Table: test_table Partition Parameters: COLUMN_STATS_ACCURATE true numFiles 1 - numRows 0 - rawDataSize 0 + numRows 500 + rawDataSize 4812 totalSize 5293 #### A masked pattern was here #### @@ -112,8 +112,8 @@ Table: test_table Partition Parameters: COLUMN_STATS_ACCURATE true numFiles 1 - numRows 0 - rawDataSize 0 + numRows 500 + rawDataSize 4812 totalSize 5293 #### A masked pattern was here #### @@ -181,8 +181,8 @@ Table: test_table Partition Parameters: COLUMN_STATS_ACCURATE true numFiles 1 - numRows 0 - rawDataSize 0 + numRows 309 + rawDataSize 1173 totalSize 1342 #### A masked pattern was here #### @@ -221,8 +221,8 @@ Table: test_table Partition Parameters: COLUMN_STATS_ACCURATE true numFiles 1 - numRows 0 - rawDataSize 0 + numRows 309 + rawDataSize 1173 totalSize 1342 #### A masked pattern was here #### @@ -290,8 +290,8 @@ Table: test_table Partition Parameters: COLUMN_STATS_ACCURATE true numFiles 1 - numRows 0 - rawDataSize 0 + numRows 155 + rawDataSize 586 totalSize 719 #### A masked pattern was here #### @@ -330,8 +330,8 @@ Table: test_table Partition Parameters: COLUMN_STATS_ACCURATE true numFiles 1 - numRows 0 - rawDataSize 0 + numRows 154 + rawDataSize 591 totalSize 722 #### A masked pattern was here #### @@ -602,8 +602,8 @@ Table: test_table Partition Parameters: COLUMN_STATS_ACCURATE true numFiles 1 - numRows 0 - rawDataSize 0 + numRows 4 + rawDataSize 14 totalSize 115 #### A masked pattern was here #### @@ -642,8 +642,8 @@ Table: test_table Partition Parameters: COLUMN_STATS_ACCURATE true numFiles 2 - numRows 0 - rawDataSize 0 + numRows 305 + rawDataSize 1163 totalSize 1427 #### A masked pattern was here #### diff --git a/ql/src/test/results/clientpositive/infer_bucket_sort_map_operators.q.out b/ql/src/test/results/clientpositive/infer_bucket_sort_map_operators.q.out index 1294766..df30554 100644 --- a/ql/src/test/results/clientpositive/infer_bucket_sort_map_operators.q.out +++ b/ql/src/test/results/clientpositive/infer_bucket_sort_map_operators.q.out @@ -78,20 +78,20 @@ STAGE PLANS: Map Operator Tree: TableScan alias: test_table1 - Statistics: Num rows: 58 Data size: 5812 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE Select Operator expressions: key (type: string) outputColumnNames: key - Statistics: Num rows: 58 Data size: 5812 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() keys: key (type: string) mode: final outputColumnNames: _col0, _col1 - Statistics: Num rows: 29 Data size: 2906 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE File Output Operator compressed: false - Statistics: Num rows: 29 Data size: 2906 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -188,8 +188,8 @@ Table: test_table_out Partition Parameters: COLUMN_STATS_ACCURATE true numFiles 1 - numRows 0 - rawDataSize 0 + numRows 309 + rawDataSize 1482 totalSize 1791 #### A masked pattern was here #### @@ -233,25 +233,25 @@ STAGE PLANS: Map Operator Tree: TableScan alias: test_table1 - Statistics: Num rows: 58 Data size: 5812 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE Select Operator expressions: key (type: string) outputColumnNames: key - Statistics: Num rows: 58 Data size: 5812 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() keys: key (type: string) mode: final outputColumnNames: _col0, _col1 - Statistics: Num rows: 29 Data size: 2906 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE Filter Operator predicate: UDFToDouble(_col1) is not null (type: boolean) - Statistics: Num rows: 15 Data size: 1503 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 125 Data size: 1328 Basic stats: COMPLETE Column stats: NONE Reduce Output Operator key expressions: UDFToDouble(_col1) (type: double) sort order: + Map-reduce partition columns: UDFToDouble(_col1) (type: double) - Statistics: Num rows: 15 Data size: 1503 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 125 Data size: 1328 Basic stats: COMPLETE Column stats: NONE value expressions: _col0 (type: string), _col1 (type: bigint) TableScan alias: src @@ -388,10 +388,10 @@ STAGE PLANS: Map Operator Tree: TableScan alias: b - Statistics: Num rows: 29 Data size: 5812 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE Filter Operator predicate: key is not null (type: boolean) - Statistics: Num rows: 15 Data size: 3006 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 @@ -502,8 +502,8 @@ Table: test_table_out Partition Parameters: COLUMN_STATS_ACCURATE true numFiles 1 - numRows 0 - rawDataSize 0 + numRows 1028 + rawDataSize 10968 totalSize 11996 #### A masked pattern was here #### @@ -538,10 +538,10 @@ STAGE PLANS: Map Operator Tree: TableScan alias: b - Statistics: Num rows: 29 Data size: 5812 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE Filter Operator predicate: key is not null (type: boolean) - Statistics: Num rows: 15 Data size: 3006 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 @@ -628,8 +628,8 @@ Table: test_table_out Partition Parameters: COLUMN_STATS_ACCURATE true numFiles 1 - numRows 0 - rawDataSize 0 + numRows 309 + rawDataSize 2728 totalSize 3037 #### A masked pattern was here #### diff --git a/ql/src/test/results/clientpositive/infer_bucket_sort_merge.q.out b/ql/src/test/results/clientpositive/infer_bucket_sort_merge.q.out index 4ed6d23..3fdc66e 100644 --- a/ql/src/test/results/clientpositive/infer_bucket_sort_merge.q.out +++ b/ql/src/test/results/clientpositive/infer_bucket_sort_merge.q.out @@ -52,8 +52,8 @@ Table: test_table Partition Parameters: COLUMN_STATS_ACCURATE true numFiles 1 - numRows 0 - rawDataSize 0 + numRows 1028 + rawDataSize 10968 totalSize 11996 #### A masked pattern was here #### @@ -105,8 +105,8 @@ Table: test_table Partition Parameters: COLUMN_STATS_ACCURATE true numFiles 2 - numRows 0 - rawDataSize 0 + numRows 1028 + rawDataSize 10968 totalSize 11996 #### A masked pattern was here #### diff --git a/ql/src/test/results/clientpositive/infer_bucket_sort_num_buckets.q.out b/ql/src/test/results/clientpositive/infer_bucket_sort_num_buckets.q.out index ce31548..b9aa2eb 100644 --- a/ql/src/test/results/clientpositive/infer_bucket_sort_num_buckets.q.out +++ b/ql/src/test/results/clientpositive/infer_bucket_sort_num_buckets.q.out @@ -151,8 +151,8 @@ Table: test_table Partition Parameters: COLUMN_STATS_ACCURATE true numFiles 2 - numRows 0 - rawDataSize 0 + numRows 670 + rawDataSize 5888 totalSize 6558 #### A masked pattern was here #### @@ -191,8 +191,8 @@ Table: test_table Partition Parameters: COLUMN_STATS_ACCURATE true numFiles 1 - numRows 0 - rawDataSize 0 + numRows 330 + rawDataSize 2924 totalSize 3254 #### A masked pattern was here #### diff --git a/ql/src/test/results/clientpositive/infer_bucket_sort_reducers_power_two.q.out b/ql/src/test/results/clientpositive/infer_bucket_sort_reducers_power_two.q.out index 7b002f5..558a688 100644 --- a/ql/src/test/results/clientpositive/infer_bucket_sort_reducers_power_two.q.out +++ b/ql/src/test/results/clientpositive/infer_bucket_sort_reducers_power_two.q.out @@ -52,8 +52,8 @@ Table: test_table Partition Parameters: COLUMN_STATS_ACCURATE true numFiles 4 - numRows 0 - rawDataSize 0 + numRows 309 + rawDataSize 1482 totalSize 1791 #### A masked pattern was here #### @@ -105,8 +105,8 @@ Table: test_table Partition Parameters: COLUMN_STATS_ACCURATE true numFiles 4 - numRows 0 - rawDataSize 0 + numRows 1028 + rawDataSize 10968 totalSize 11996 #### A masked pattern was here #### @@ -158,8 +158,8 @@ Table: test_table Partition Parameters: COLUMN_STATS_ACCURATE true numFiles 4 - numRows 0 - rawDataSize 0 + numRows 1028 + rawDataSize 10968 totalSize 11996 #### A masked pattern was here #### @@ -211,8 +211,8 @@ Table: test_table Partition Parameters: COLUMN_STATS_ACCURATE true numFiles 4 - numRows 0 - rawDataSize 0 + numRows 2654 + rawDataSize 28466 totalSize 31120 #### A masked pattern was here #### @@ -264,8 +264,8 @@ Table: test_table Partition Parameters: COLUMN_STATS_ACCURATE true numFiles 16 - numRows 0 - rawDataSize 0 + numRows 2654 + rawDataSize 28466 totalSize 31120 #### A masked pattern was here #### @@ -319,8 +319,8 @@ Table: test_table Partition Parameters: COLUMN_STATS_ACCURATE true numFiles 1 - numRows 0 - rawDataSize 0 + numRows 5 + rawDataSize 19 totalSize 24 #### A masked pattern was here #### diff --git a/ql/src/test/results/clientpositive/input_part1.q.out b/ql/src/test/results/clientpositive/input_part1.q.out index ba96dcf..d6f4d3e 100644 --- a/ql/src/test/results/clientpositive/input_part1.q.out +++ b/ql/src/test/results/clientpositive/input_part1.q.out @@ -243,7 +243,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -312,7 +312,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/input_part2.q.out b/ql/src/test/results/clientpositive/input_part2.q.out index 77da2eb..ba59f57 100644 --- a/ql/src/test/results/clientpositive/input_part2.q.out +++ b/ql/src/test/results/clientpositive/input_part2.q.out @@ -392,7 +392,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10002 + base file name: -ext-10004 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -461,7 +461,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10002 + base file name: -ext-10004 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -571,7 +571,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10003 + base file name: -ext-10005 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -640,7 +640,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10003 + base file name: -ext-10005 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/join26.q.out b/ql/src/test/results/clientpositive/join26.q.out index 148479a..866d8cc 100644 --- a/ql/src/test/results/clientpositive/join26.q.out +++ b/ql/src/test/results/clientpositive/join26.q.out @@ -329,7 +329,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -398,7 +398,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/join32_lessSize.q.out b/ql/src/test/results/clientpositive/join32_lessSize.q.out index 3c5f9e2..5ea4024 100644 --- a/ql/src/test/results/clientpositive/join32_lessSize.q.out +++ b/ql/src/test/results/clientpositive/join32_lessSize.q.out @@ -358,7 +358,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10001 + base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -846,7 +846,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10001 + base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -993,7 +993,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -1606,7 +1606,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10001 + base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -2219,7 +2219,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10001 + base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/join35.q.out b/ql/src/test/results/clientpositive/join35.q.out index 5b68295..228524c 100644 --- a/ql/src/test/results/clientpositive/join35.q.out +++ b/ql/src/test/results/clientpositive/join35.q.out @@ -381,7 +381,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10001 + base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -401,7 +401,7 @@ STAGE PLANS: serde: org.apache.hadoop.hive.serde2.lazybinary.LazyBinarySerDe #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/join_map_ppr.q.out b/ql/src/test/results/clientpositive/join_map_ppr.q.out index 349c9f5..024afc0 100644 --- a/ql/src/test/results/clientpositive/join_map_ppr.q.out +++ b/ql/src/test/results/clientpositive/join_map_ppr.q.out @@ -331,7 +331,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -400,7 +400,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -953,7 +953,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -1037,7 +1037,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/list_bucket_dml_10.q.java1.7.out b/ql/src/test/results/clientpositive/list_bucket_dml_10.q.java1.7.out index 1bd4755..e1f60a8 100644 --- a/ql/src/test/results/clientpositive/list_bucket_dml_10.q.java1.7.out +++ b/ql/src/test/results/clientpositive/list_bucket_dml_10.q.java1.7.out @@ -367,8 +367,8 @@ Table: list_bucketing_static_part Partition Parameters: COLUMN_STATS_ACCURATE true numFiles 4 - numRows 0 - rawDataSize 0 + numRows 500 + rawDataSize 4812 totalSize 5520 #### A masked pattern was here #### diff --git a/ql/src/test/results/clientpositive/merge3.q.out b/ql/src/test/results/clientpositive/merge3.q.out index b237631..876fa90 100644 --- a/ql/src/test/results/clientpositive/merge3.q.out +++ b/ql/src/test/results/clientpositive/merge3.q.out @@ -242,7 +242,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10003 + base file name: -ext-10004 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -296,7 +296,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10003 + base file name: -ext-10004 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -2654,7 +2654,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -2729,7 +2729,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -5122,7 +5122,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -5197,7 +5197,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/metadataonly1.q.out b/ql/src/test/results/clientpositive/metadataonly1.q.out index 727b2e7..61f9900 100644 --- a/ql/src/test/results/clientpositive/metadataonly1.q.out +++ b/ql/src/test/results/clientpositive/metadataonly1.q.out @@ -158,9 +158,9 @@ STAGE PLANS: value expressions: _col0 (type: string) auto parallelism: false Path -> Alias: - -mr-10003default.test1{ds=1} [test1] + -mr-10004default.test1{ds=1} [test1] Path -> Partition: - -mr-10003default.test1{ds=1} + -mr-10004default.test1{ds=1} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -200,7 +200,7 @@ STAGE PLANS: name: default.test1 name: default.test1 Truncated Path -> Alias: - -mr-10003default.test1{ds=1} [test1] + -mr-10004default.test1{ds=1} [test1] Needs Tagging: false Reduce Operator Tree: Group By Operator @@ -299,9 +299,9 @@ STAGE PLANS: tag: -1 auto parallelism: false Path -> Alias: - -mr-10003default.test1{ds=1} [test1] + -mr-10004default.test1{ds=1} [test1] Path -> Partition: - -mr-10003default.test1{ds=1} + -mr-10004default.test1{ds=1} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -341,7 +341,7 @@ STAGE PLANS: name: default.test1 name: default.test1 Truncated Path -> Alias: - -mr-10003default.test1{ds=1} [test1] + -mr-10004default.test1{ds=1} [test1] Needs Tagging: false Reduce Operator Tree: Group By Operator @@ -618,10 +618,10 @@ STAGE PLANS: value expressions: _col0 (type: string) auto parallelism: false Path -> Alias: - -mr-10005default.test1{ds=1} [$hdt$_1:a2] - -mr-10006default.test1{ds=2} [$hdt$_1:a2] + -mr-10006default.test1{ds=1} [$hdt$_1:a2] + -mr-10007default.test1{ds=2} [$hdt$_1:a2] Path -> Partition: - -mr-10005default.test1{ds=1} + -mr-10006default.test1{ds=1} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -660,7 +660,7 @@ STAGE PLANS: serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.test1 name: default.test1 - -mr-10006default.test1{ds=2} + -mr-10007default.test1{ds=2} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -700,8 +700,8 @@ STAGE PLANS: name: default.test1 name: default.test1 Truncated Path -> Alias: - -mr-10005default.test1{ds=1} [$hdt$_1:a2] - -mr-10006default.test1{ds=2} [$hdt$_1:a2] + -mr-10006default.test1{ds=1} [$hdt$_1:a2] + -mr-10007default.test1{ds=2} [$hdt$_1:a2] Needs Tagging: false Reduce Operator Tree: Group By Operator @@ -763,7 +763,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10004 + base file name: -mr-10005 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -913,7 +913,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -1069,11 +1069,11 @@ STAGE PLANS: tag: -1 auto parallelism: false Path -> Alias: - -mr-10003default.test2{ds=1, hr=1} [test2] - -mr-10004default.test2{ds=1, hr=2} [test2] - -mr-10005default.test2{ds=1, hr=3} [test2] + -mr-10004default.test2{ds=1, hr=1} [test2] + -mr-10005default.test2{ds=1, hr=2} [test2] + -mr-10006default.test2{ds=1, hr=3} [test2] Path -> Partition: - -mr-10003default.test2{ds=1, hr=1} + -mr-10004default.test2{ds=1, hr=1} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1113,7 +1113,7 @@ STAGE PLANS: serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.test2 name: default.test2 - -mr-10004default.test2{ds=1, hr=2} + -mr-10005default.test2{ds=1, hr=2} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1153,7 +1153,7 @@ STAGE PLANS: serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.test2 name: default.test2 - -mr-10005default.test2{ds=1, hr=3} + -mr-10006default.test2{ds=1, hr=3} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1194,9 +1194,9 @@ STAGE PLANS: name: default.test2 name: default.test2 Truncated Path -> Alias: - -mr-10003default.test2{ds=1, hr=1} [test2] - -mr-10004default.test2{ds=1, hr=2} [test2] - -mr-10005default.test2{ds=1, hr=3} [test2] + -mr-10004default.test2{ds=1, hr=1} [test2] + -mr-10005default.test2{ds=1, hr=2} [test2] + -mr-10006default.test2{ds=1, hr=3} [test2] Needs Tagging: false Reduce Operator Tree: Group By Operator @@ -1538,10 +1538,10 @@ STAGE PLANS: value expressions: _col0 (type: string) auto parallelism: false Path -> Alias: - -mr-10003default.test1{ds=1} [test1] - -mr-10004default.test1{ds=2} [test1] + -mr-10004default.test1{ds=1} [test1] + -mr-10005default.test1{ds=2} [test1] Path -> Partition: - -mr-10003default.test1{ds=1} + -mr-10004default.test1{ds=1} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1580,7 +1580,7 @@ STAGE PLANS: serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.test1 name: default.test1 - -mr-10004default.test1{ds=2} + -mr-10005default.test1{ds=2} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1620,8 +1620,8 @@ STAGE PLANS: name: default.test1 name: default.test1 Truncated Path -> Alias: - -mr-10003default.test1{ds=1} [test1] - -mr-10004default.test1{ds=2} [test1] + -mr-10004default.test1{ds=1} [test1] + -mr-10005default.test1{ds=2} [test1] Needs Tagging: false Reduce Operator Tree: Group By Operator @@ -1780,13 +1780,13 @@ STAGE PLANS: tag: -1 auto parallelism: false Path -> Alias: - -mr-10003default.test2{ds=01_10_10, hr=01} [test2] - -mr-10004default.test2{ds=01_10_20, hr=02} [test2] - -mr-10005default.test2{ds=1, hr=1} [test2] - -mr-10006default.test2{ds=1, hr=2} [test2] - -mr-10007default.test2{ds=1, hr=3} [test2] + -mr-10004default.test2{ds=01_10_10, hr=01} [test2] + -mr-10005default.test2{ds=01_10_20, hr=02} [test2] + -mr-10006default.test2{ds=1, hr=1} [test2] + -mr-10007default.test2{ds=1, hr=2} [test2] + -mr-10008default.test2{ds=1, hr=3} [test2] Path -> Partition: - -mr-10003default.test2{ds=01_10_10, hr=01} + -mr-10004default.test2{ds=01_10_10, hr=01} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1826,7 +1826,7 @@ STAGE PLANS: serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.test2 name: default.test2 - -mr-10004default.test2{ds=01_10_20, hr=02} + -mr-10005default.test2{ds=01_10_20, hr=02} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1866,7 +1866,7 @@ STAGE PLANS: serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.test2 name: default.test2 - -mr-10005default.test2{ds=1, hr=1} + -mr-10006default.test2{ds=1, hr=1} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1906,7 +1906,7 @@ STAGE PLANS: serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.test2 name: default.test2 - -mr-10006default.test2{ds=1, hr=2} + -mr-10007default.test2{ds=1, hr=2} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1946,7 +1946,7 @@ STAGE PLANS: serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.test2 name: default.test2 - -mr-10007default.test2{ds=1, hr=3} + -mr-10008default.test2{ds=1, hr=3} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1987,11 +1987,11 @@ STAGE PLANS: name: default.test2 name: default.test2 Truncated Path -> Alias: - -mr-10003default.test2{ds=01_10_10, hr=01} [test2] - -mr-10004default.test2{ds=01_10_20, hr=02} [test2] - -mr-10005default.test2{ds=1, hr=1} [test2] - -mr-10006default.test2{ds=1, hr=2} [test2] - -mr-10007default.test2{ds=1, hr=3} [test2] + -mr-10004default.test2{ds=01_10_10, hr=01} [test2] + -mr-10005default.test2{ds=01_10_20, hr=02} [test2] + -mr-10006default.test2{ds=1, hr=1} [test2] + -mr-10007default.test2{ds=1, hr=2} [test2] + -mr-10008default.test2{ds=1, hr=3} [test2] Needs Tagging: false Reduce Operator Tree: Group By Operator diff --git a/ql/src/test/results/clientpositive/optimize_nullscan.q.out b/ql/src/test/results/clientpositive/optimize_nullscan.q.out index 386dd6b..b974770 100644 --- a/ql/src/test/results/clientpositive/optimize_nullscan.q.out +++ b/ql/src/test/results/clientpositive/optimize_nullscan.q.out @@ -75,9 +75,9 @@ STAGE PLANS: GatherStats: false MultiFileSpray: false Path -> Alias: - -mr-10002default.src{} [src] + -mr-10003default.src{} [src] Path -> Partition: - -mr-10002default.src{} + -mr-10003default.src{} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -121,7 +121,7 @@ STAGE PLANS: name: default.src name: default.src Truncated Path -> Alias: - -mr-10002default.src{} [src] + -mr-10003default.src{} [src] Stage: Stage-0 Fetch Operator @@ -337,12 +337,12 @@ STAGE PLANS: value expressions: _col0 (type: string) auto parallelism: false Path -> Alias: - -mr-10004default.srcpart{ds=2008-04-08, hr=11} [b:srcpart] - -mr-10005default.srcpart{ds=2008-04-08, hr=12} [b:srcpart] - -mr-10006default.srcpart{ds=2008-04-09, hr=11} [b:srcpart] - -mr-10007default.srcpart{ds=2008-04-09, hr=12} [b:srcpart] + -mr-10005default.srcpart{ds=2008-04-08, hr=11} [b:srcpart] + -mr-10006default.srcpart{ds=2008-04-08, hr=12} [b:srcpart] + -mr-10007default.srcpart{ds=2008-04-09, hr=11} [b:srcpart] + -mr-10008default.srcpart{ds=2008-04-09, hr=12} [b:srcpart] Path -> Partition: - -mr-10004default.srcpart{ds=2008-04-08, hr=11} + -mr-10005default.srcpart{ds=2008-04-08, hr=11} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -387,7 +387,7 @@ STAGE PLANS: serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - -mr-10005default.srcpart{ds=2008-04-08, hr=12} + -mr-10006default.srcpart{ds=2008-04-08, hr=12} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -432,7 +432,7 @@ STAGE PLANS: serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - -mr-10006default.srcpart{ds=2008-04-09, hr=11} + -mr-10007default.srcpart{ds=2008-04-09, hr=11} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -477,7 +477,7 @@ STAGE PLANS: serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - -mr-10007default.srcpart{ds=2008-04-09, hr=12} + -mr-10008default.srcpart{ds=2008-04-09, hr=12} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -523,10 +523,10 @@ STAGE PLANS: name: default.srcpart name: default.srcpart Truncated Path -> Alias: - -mr-10004default.srcpart{ds=2008-04-08, hr=11} [b:srcpart] - -mr-10005default.srcpart{ds=2008-04-08, hr=12} [b:srcpart] - -mr-10006default.srcpart{ds=2008-04-09, hr=11} [b:srcpart] - -mr-10007default.srcpart{ds=2008-04-09, hr=12} [b:srcpart] + -mr-10005default.srcpart{ds=2008-04-08, hr=11} [b:srcpart] + -mr-10006default.srcpart{ds=2008-04-08, hr=12} [b:srcpart] + -mr-10007default.srcpart{ds=2008-04-09, hr=11} [b:srcpart] + -mr-10008default.srcpart{ds=2008-04-09, hr=12} [b:srcpart] Needs Tagging: false Reduce Operator Tree: Select Operator @@ -586,10 +586,10 @@ STAGE PLANS: tag: 1 auto parallelism: false Path -> Alias: - -mr-10003default.src{} [a:src] + -mr-10004default.src{} [a:src] #### A masked pattern was here #### Path -> Partition: - -mr-10003default.src{} + -mr-10004default.src{} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -634,7 +634,7 @@ STAGE PLANS: name: default.src #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -653,7 +653,7 @@ STAGE PLANS: serialization.lib org.apache.hadoop.hive.serde2.lazybinary.LazyBinarySerDe serde: org.apache.hadoop.hive.serde2.lazybinary.LazyBinarySerDe Truncated Path -> Alias: - -mr-10003default.src{} [a:src] + -mr-10004default.src{} [a:src] #### A masked pattern was here #### Needs Tagging: true Reduce Operator Tree: @@ -795,9 +795,9 @@ STAGE PLANS: value expressions: _col0 (type: bigint) auto parallelism: false Path -> Alias: - -mr-10004default.src{} [null-subquery1:_u1-subquery1:src] + -mr-10005default.src{} [null-subquery1:_u1-subquery1:src] Path -> Partition: - -mr-10004default.src{} + -mr-10005default.src{} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -841,7 +841,7 @@ STAGE PLANS: name: default.src name: default.src Truncated Path -> Alias: - -mr-10004default.src{} [null-subquery1:_u1-subquery1:src] + -mr-10005default.src{} [null-subquery1:_u1-subquery1:src] Needs Tagging: false Reduce Operator Tree: Group By Operator @@ -925,7 +925,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -945,7 +945,7 @@ STAGE PLANS: serde: org.apache.hadoop.hive.serde2.lazybinary.LazyBinarySerDe #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -1313,12 +1313,12 @@ STAGE PLANS: value expressions: _col0 (type: string) auto parallelism: false Path -> Alias: - -mr-10004default.srcpart{ds=2008-04-08, hr=11} [b:srcpart] - -mr-10005default.srcpart{ds=2008-04-08, hr=12} [b:srcpart] - -mr-10006default.srcpart{ds=2008-04-09, hr=11} [b:srcpart] - -mr-10007default.srcpart{ds=2008-04-09, hr=12} [b:srcpart] + -mr-10005default.srcpart{ds=2008-04-08, hr=11} [b:srcpart] + -mr-10006default.srcpart{ds=2008-04-08, hr=12} [b:srcpart] + -mr-10007default.srcpart{ds=2008-04-09, hr=11} [b:srcpart] + -mr-10008default.srcpart{ds=2008-04-09, hr=12} [b:srcpart] Path -> Partition: - -mr-10004default.srcpart{ds=2008-04-08, hr=11} + -mr-10005default.srcpart{ds=2008-04-08, hr=11} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1363,7 +1363,7 @@ STAGE PLANS: serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - -mr-10005default.srcpart{ds=2008-04-08, hr=12} + -mr-10006default.srcpart{ds=2008-04-08, hr=12} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1408,7 +1408,7 @@ STAGE PLANS: serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - -mr-10006default.srcpart{ds=2008-04-09, hr=11} + -mr-10007default.srcpart{ds=2008-04-09, hr=11} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1453,7 +1453,7 @@ STAGE PLANS: serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe name: default.srcpart name: default.srcpart - -mr-10007default.srcpart{ds=2008-04-09, hr=12} + -mr-10008default.srcpart{ds=2008-04-09, hr=12} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1499,10 +1499,10 @@ STAGE PLANS: name: default.srcpart name: default.srcpart Truncated Path -> Alias: - -mr-10004default.srcpart{ds=2008-04-08, hr=11} [b:srcpart] - -mr-10005default.srcpart{ds=2008-04-08, hr=12} [b:srcpart] - -mr-10006default.srcpart{ds=2008-04-09, hr=11} [b:srcpart] - -mr-10007default.srcpart{ds=2008-04-09, hr=12} [b:srcpart] + -mr-10005default.srcpart{ds=2008-04-08, hr=11} [b:srcpart] + -mr-10006default.srcpart{ds=2008-04-08, hr=12} [b:srcpart] + -mr-10007default.srcpart{ds=2008-04-09, hr=11} [b:srcpart] + -mr-10008default.srcpart{ds=2008-04-09, hr=12} [b:srcpart] Needs Tagging: false Reduce Operator Tree: Select Operator @@ -1560,10 +1560,10 @@ STAGE PLANS: value expressions: _col0 (type: string) auto parallelism: false Path -> Alias: - -mr-10003default.src{} [a:src] + -mr-10004default.src{} [a:src] #### A masked pattern was here #### Path -> Partition: - -mr-10003default.src{} + -mr-10004default.src{} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1608,7 +1608,7 @@ STAGE PLANS: name: default.src #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -1627,7 +1627,7 @@ STAGE PLANS: serialization.lib org.apache.hadoop.hive.serde2.lazybinary.LazyBinarySerDe serde: org.apache.hadoop.hive.serde2.lazybinary.LazyBinarySerDe Truncated Path -> Alias: - -mr-10003default.src{} [a:src] + -mr-10004default.src{} [a:src] #### A masked pattern was here #### Needs Tagging: true Reduce Operator Tree: @@ -1791,9 +1791,9 @@ STAGE PLANS: tag: 1 auto parallelism: false Path -> Alias: - -mr-10004default.src{} [null-subquery2:a-subquery2:src] + -mr-10005default.src{} [null-subquery2:a-subquery2:src] Path -> Partition: - -mr-10004default.src{} + -mr-10005default.src{} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1837,7 +1837,7 @@ STAGE PLANS: name: default.src name: default.src Truncated Path -> Alias: - -mr-10004default.src{} [null-subquery2:a-subquery2:src] + -mr-10005default.src{} [null-subquery2:a-subquery2:src] Needs Tagging: true Reduce Operator Tree: Join Operator @@ -1930,10 +1930,10 @@ STAGE PLANS: GatherStats: false MultiFileSpray: false Path -> Alias: - -mr-10003default.src{} [null-subquery1:a-subquery1:src] + -mr-10004default.src{} [null-subquery1:a-subquery1:src] #### A masked pattern was here #### Path -> Partition: - -mr-10003default.src{} + -mr-10004default.src{} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -1978,7 +1978,7 @@ STAGE PLANS: name: default.src #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -1997,7 +1997,7 @@ STAGE PLANS: serialization.lib org.apache.hadoop.hive.serde2.lazybinary.LazyBinarySerDe serde: org.apache.hadoop.hive.serde2.lazybinary.LazyBinarySerDe Truncated Path -> Alias: - -mr-10003default.src{} [null-subquery1:a-subquery1:src] + -mr-10004default.src{} [null-subquery1:a-subquery1:src] #### A masked pattern was here #### Stage: Stage-0 @@ -2097,9 +2097,9 @@ STAGE PLANS: value expressions: key (type: string) auto parallelism: false Path -> Alias: - -mr-10002default.src{} [s1, s2] + -mr-10003default.src{} [s1, s2] Path -> Partition: - -mr-10002default.src{} + -mr-10003default.src{} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -2143,7 +2143,7 @@ STAGE PLANS: name: default.src name: default.src Truncated Path -> Alias: - -mr-10002default.src{} [s1, s2] + -mr-10003default.src{} [s1, s2] Needs Tagging: true Reduce Operator Tree: Join Operator @@ -2250,9 +2250,9 @@ STAGE PLANS: value expressions: _col0 (type: bigint) auto parallelism: false Path -> Alias: - -mr-10002default.src{} [src] + -mr-10003default.src{} [src] Path -> Partition: - -mr-10002default.src{} + -mr-10003default.src{} Partition input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -2296,7 +2296,7 @@ STAGE PLANS: name: default.src name: default.src Truncated Path -> Alias: - -mr-10002default.src{} [src] + -mr-10003default.src{} [src] Needs Tagging: false Reduce Operator Tree: Group By Operator diff --git a/ql/src/test/results/clientpositive/parallel_orderby.q.out b/ql/src/test/results/clientpositive/parallel_orderby.q.out index 4b7de52..8ca536e 100644 --- a/ql/src/test/results/clientpositive/parallel_orderby.q.out +++ b/ql/src/test/results/clientpositive/parallel_orderby.q.out @@ -111,8 +111,8 @@ Table Type: MANAGED_TABLE Table Parameters: COLUMN_STATS_ACCURATE true numFiles 4 - numRows 0 - rawDataSize 0 + numRows 48 + rawDataSize 512 totalSize 560 #### A masked pattern was here #### @@ -224,8 +224,8 @@ Table Type: MANAGED_TABLE Table Parameters: COLUMN_STATS_ACCURATE true numFiles 1 - numRows 0 - rawDataSize 0 + numRows 48 + rawDataSize 512 totalSize 560 #### A masked pattern was here #### diff --git a/ql/src/test/results/clientpositive/pcr.q.out b/ql/src/test/results/clientpositive/pcr.q.out index d7c40a3..c4fde24 100644 --- a/ql/src/test/results/clientpositive/pcr.q.out +++ b/ql/src/test/results/clientpositive/pcr.q.out @@ -2825,7 +2825,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -3168,7 +3168,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -4238,7 +4238,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10002 + base file name: -ext-10004 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -4307,7 +4307,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10002 + base file name: -ext-10004 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -4417,7 +4417,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10003 + base file name: -ext-10005 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -4486,7 +4486,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10003 + base file name: -ext-10005 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -4843,7 +4843,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10002 + base file name: -ext-10004 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -4927,7 +4927,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10002 + base file name: -ext-10004 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -5057,7 +5057,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10003 + base file name: -ext-10005 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -5141,7 +5141,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10003 + base file name: -ext-10005 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/pointlookup2.q.out b/ql/src/test/results/clientpositive/pointlookup2.q.out index 700fbde..3f28788 100644 --- a/ql/src/test/results/clientpositive/pointlookup2.q.out +++ b/ql/src/test/results/clientpositive/pointlookup2.q.out @@ -510,7 +510,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -813,7 +813,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -1169,7 +1169,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -1571,7 +1571,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/pointlookup3.q.out b/ql/src/test/results/clientpositive/pointlookup3.q.out index 60a276b..edc726f 100644 --- a/ql/src/test/results/clientpositive/pointlookup3.q.out +++ b/ql/src/test/results/clientpositive/pointlookup3.q.out @@ -665,7 +665,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -970,7 +970,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -1330,7 +1330,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/ppd_join_filter.q.out b/ql/src/test/results/clientpositive/ppd_join_filter.q.out index 1781fe9..8edd2a2 100644 --- a/ql/src/test/results/clientpositive/ppd_join_filter.q.out +++ b/ql/src/test/results/clientpositive/ppd_join_filter.q.out @@ -278,7 +278,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -691,7 +691,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -1108,7 +1108,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -1521,7 +1521,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/ppd_union_view.q.out b/ql/src/test/results/clientpositive/ppd_union_view.q.out index 716d59f..9c1af8d 100644 --- a/ql/src/test/results/clientpositive/ppd_union_view.q.out +++ b/ql/src/test/results/clientpositive/ppd_union_view.q.out @@ -404,7 +404,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -649,7 +649,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/ppd_vc.q.out b/ql/src/test/results/clientpositive/ppd_vc.q.out index a16058c..33fc6aa 100644 --- a/ql/src/test/results/clientpositive/ppd_vc.q.out +++ b/ql/src/test/results/clientpositive/ppd_vc.q.out @@ -733,7 +733,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/rand_partitionpruner2.q.out b/ql/src/test/results/clientpositive/rand_partitionpruner2.q.out index d04ad8b..88edd07 100644 --- a/ql/src/test/results/clientpositive/rand_partitionpruner2.q.out +++ b/ql/src/test/results/clientpositive/rand_partitionpruner2.q.out @@ -271,7 +271,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -340,7 +340,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/sample1.q.out b/ql/src/test/results/clientpositive/sample1.q.out index e838887..638cf91 100644 --- a/ql/src/test/results/clientpositive/sample1.q.out +++ b/ql/src/test/results/clientpositive/sample1.q.out @@ -230,7 +230,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -299,7 +299,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/sample10.q.out b/ql/src/test/results/clientpositive/sample10.q.out index a6bc91a..b401841 100644 --- a/ql/src/test/results/clientpositive/sample10.q.out +++ b/ql/src/test/results/clientpositive/sample10.q.out @@ -360,7 +360,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/sample2.q.out b/ql/src/test/results/clientpositive/sample2.q.out index b8e0686..9af5731 100644 --- a/ql/src/test/results/clientpositive/sample2.q.out +++ b/ql/src/test/results/clientpositive/sample2.q.out @@ -215,7 +215,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -284,7 +284,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/sample4.q.out b/ql/src/test/results/clientpositive/sample4.q.out index e1bc757..e81abee 100644 --- a/ql/src/test/results/clientpositive/sample4.q.out +++ b/ql/src/test/results/clientpositive/sample4.q.out @@ -217,7 +217,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -286,7 +286,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/sample5.q.out b/ql/src/test/results/clientpositive/sample5.q.out index aee535c..411fc99 100644 --- a/ql/src/test/results/clientpositive/sample5.q.out +++ b/ql/src/test/results/clientpositive/sample5.q.out @@ -218,7 +218,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -287,7 +287,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/sample6.q.out b/ql/src/test/results/clientpositive/sample6.q.out index 2ad705a..037190c 100644 --- a/ql/src/test/results/clientpositive/sample6.q.out +++ b/ql/src/test/results/clientpositive/sample6.q.out @@ -215,7 +215,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -284,7 +284,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/sample7.q.out b/ql/src/test/results/clientpositive/sample7.q.out index 986f053..d737acf 100644 --- a/ql/src/test/results/clientpositive/sample7.q.out +++ b/ql/src/test/results/clientpositive/sample7.q.out @@ -223,7 +223,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -292,7 +292,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/stats0.q.out b/ql/src/test/results/clientpositive/stats0.q.out index 6e068dc..4218272 100644 --- a/ql/src/test/results/clientpositive/stats0.q.out +++ b/ql/src/test/results/clientpositive/stats0.q.out @@ -1513,7 +1513,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -1582,7 +1582,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/stats11.q.out b/ql/src/test/results/clientpositive/stats11.q.out index 4ed235f..17af076 100644 --- a/ql/src/test/results/clientpositive/stats11.q.out +++ b/ql/src/test/results/clientpositive/stats11.q.out @@ -620,7 +620,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -689,7 +689,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -1131,7 +1131,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: @@ -1215,7 +1215,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -ext-10001 + base file name: -ext-10002 input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/udtf_explode.q.out b/ql/src/test/results/clientpositive/udtf_explode.q.out index f89ec97..2902df9 100644 --- a/ql/src/test/results/clientpositive/udtf_explode.q.out +++ b/ql/src/test/results/clientpositive/udtf_explode.q.out @@ -242,7 +242,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -552,7 +552,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/union22.q.out b/ql/src/test/results/clientpositive/union22.q.out index c62a90d..beb039e 100644 --- a/ql/src/test/results/clientpositive/union22.q.out +++ b/ql/src/test/results/clientpositive/union22.q.out @@ -535,7 +535,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10001 + base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/union24.q.out b/ql/src/test/results/clientpositive/union24.q.out index 79f969d..8c0c149 100644 --- a/ql/src/test/results/clientpositive/union24.q.out +++ b/ql/src/test/results/clientpositive/union24.q.out @@ -427,7 +427,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -1041,7 +1041,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -1521,7 +1521,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -1670,7 +1670,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10004 + base file name: -mr-10005 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/unionDistinct_1.q.out b/ql/src/test/results/clientpositive/unionDistinct_1.q.out index 81c46da..c8b3146 100644 --- a/ql/src/test/results/clientpositive/unionDistinct_1.q.out +++ b/ql/src/test/results/clientpositive/unionDistinct_1.q.out @@ -7249,7 +7249,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10001 + base file name: -mr-10002 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -8820,7 +8820,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -8950,7 +8950,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10004 + base file name: -mr-10005 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -8970,7 +8970,7 @@ STAGE PLANS: serde: org.apache.hadoop.hive.serde2.lazybinary.LazyBinarySerDe #### A masked pattern was here #### Partition - base file name: -mr-10005 + base file name: -mr-10006 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -9582,7 +9582,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -10135,7 +10135,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -10155,7 +10155,7 @@ STAGE PLANS: serde: org.apache.hadoop.hive.serde2.lazybinary.LazyBinarySerDe #### A masked pattern was here #### Partition - base file name: -mr-10005 + base file name: -mr-10006 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: diff --git a/ql/src/test/results/clientpositive/vectorized_ptf.q.out b/ql/src/test/results/clientpositive/vectorized_ptf.q.out index 5e6a72e..e44eb99 100644 --- a/ql/src/test/results/clientpositive/vectorized_ptf.q.out +++ b/ql/src/test/results/clientpositive/vectorized_ptf.q.out @@ -347,7 +347,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -727,7 +727,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -803,7 +803,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -1367,7 +1367,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -1741,7 +1741,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -2133,7 +2133,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -2483,7 +2483,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -2837,7 +2837,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -3199,7 +3199,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -3563,7 +3563,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -3928,7 +3928,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -4326,7 +4326,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -4410,7 +4410,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -4805,7 +4805,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -5288,7 +5288,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -5399,7 +5399,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -5742,7 +5742,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -6068,7 +6068,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -6602,7 +6602,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -6737,7 +6737,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10005 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -6823,7 +6823,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10004 + base file name: -mr-10006 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -7365,7 +7365,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -7449,7 +7449,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -7882,7 +7882,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -7958,7 +7958,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -8034,7 +8034,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10004 + base file name: -mr-10005 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -8450,7 +8450,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -8533,7 +8533,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -8961,7 +8961,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -9053,7 +9053,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -9130,7 +9130,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10004 + base file name: -mr-10005 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -9605,7 +9605,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -9689,7 +9689,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -10130,7 +10130,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10002 + base file name: -mr-10003 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: @@ -10207,7 +10207,7 @@ STAGE PLANS: Path -> Partition: #### A masked pattern was here #### Partition - base file name: -mr-10003 + base file name: -mr-10004 input format: org.apache.hadoop.mapred.SequenceFileInputFormat output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat properties: -- 1.7.12.4 (Apple Git-37)