----------------------------------------------------------- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/72063/#review219486 -----------------------------------------------------------
ql/src/java/org/apache/hadoop/hive/ql/parse/SemanticAnalyzer.java Lines 8475 (patched) <https://reviews.apache.org/r/72063/#comment307668> do we really need this much if-s ? what do you think about: * throw real exceptions - if appropriate * introduce feature toggle for this case/check and make it enabled by default - so that there will be a way back to the old behaviour ql/src/test/results/clientpositive/llap/auto_sortmerge_join_16.q.out Line 231 (original), 231 (patched) <https://reviews.apache.org/r/72063/#comment307670> it's great that this will start fixing some case in which column stats was not there; I guess it was not calculated correctly earlier ql/src/test/results/clientpositive/spark/auto_sortmerge_join_16.q.out_spark Lines 458 (patched) <https://reviews.apache.org/r/72063/#comment307669> is this change expected? is the new resultset the correct one? do we have an agreement between spark/llap ? - Zoltan Haindrich On Jan. 30, 2020, 4:30 p.m., Karen Coppage wrote: > > ----------------------------------------------------------- > This is an automatically generated e-mail. To reply, visit: > https://reviews.apache.org/r/72063/ > ----------------------------------------------------------- > > (Updated Jan. 30, 2020, 4:30 p.m.) > > > Review request for hive and Peter Vary. > > > Bugs: HIVE-10362 > https://issues.apache.org/jira/browse/HIVE-10362 > > > Repository: hive-git > > > Description > ------- > > Example: > create table dynparttypechecknum (key int, value string) partitioned by (part > int); > insert into dynparttypechecknum partition (part) select key, value, '00001' > from src limit 1; > show partitions dynparttypechecknum; > > Partition created will be named: > part=00001 > even though the type of `part` is int. > > Solution is to cast the inserted DP columns in the SelectOperator before > FileSinkOperator which creates the partition dir, not after. > > > Diffs > ----- > > ql/src/java/org/apache/hadoop/hive/ql/parse/SemanticAnalyzer.java > 5fcc367cc9 > ql/src/java/org/apache/hadoop/hive/ql/plan/DynamicPartitionCtx.java > c1aeb8f136 > ql/src/test/org/apache/hadoop/hive/ql/exec/TestFileSinkOperator.java > 2c4b69b2fe > ql/src/test/queries/clientpositive/dynpart_cast.q PRE-CREATION > ql/src/test/results/clientpositive/autoColumnStats_6.q.out da3be3e5bb > ql/src/test/results/clientpositive/dynpart_cast.q.out PRE-CREATION > ql/src/test/results/clientpositive/dynpart_sort_optimization_acid2.q.out > 43bb789840 > ql/src/test/results/clientpositive/infer_bucket_sort_num_buckets.q.out > f745b46899 > ql/src/test/results/clientpositive/llap/auto_sortmerge_join_16.q.out > fc9050b2c3 > > ql/src/test/results/clientpositive/llap/dynpart_sort_optimization_acid.q.out > 95aae7286f > ql/src/test/results/clientpositive/llap/llap_smb.q.out 24026d0bab > ql/src/test/results/clientpositive/llap/orc_merge1.q.out 9da73e65ac > ql/src/test/results/clientpositive/llap/orc_merge10.q.out a6ea33493f > ql/src/test/results/clientpositive/llap/orc_merge2.q.out 9b0d3b4234 > ql/src/test/results/clientpositive/llap/orc_merge_diff_fs.q.out d35f44b10a > ql/src/test/results/clientpositive/llap/rcfile_merge2.q.out fcff20a68e > ql/src/test/results/clientpositive/llap/tez_dml.q.out 4ad78d8582 > ql/src/test/results/clientpositive/orc_merge1.q.out 9c07816340 > ql/src/test/results/clientpositive/orc_merge10.q.out 4a5f03c82f > ql/src/test/results/clientpositive/orc_merge2.q.out d132d62b18 > ql/src/test/results/clientpositive/orc_merge_diff_fs.q.out 7f9a04b09f > ql/src/test/results/clientpositive/smb_join_partition_key.q.out c18d01d26a > ql/src/test/results/clientpositive/spark/auto_sortmerge_join_16.q.out > bc6c3add54 > ql/src/test/results/clientpositive/spark/auto_sortmerge_join_16.q.out_spark > 67b62c1265 > > ql/src/test/results/clientpositive/spark/infer_bucket_sort_num_buckets.q.out > 56d5ed945b > ql/src/test/results/clientpositive/spark/orc_merge1.q.out 977c4cbfc1 > ql/src/test/results/clientpositive/spark/orc_merge2.q.out 4647b86ea3 > ql/src/test/results/clientpositive/spark/orc_merge_diff_fs.q.out b7d3dd725d > > > Diff: https://reviews.apache.org/r/72063/diff/1/ > > > Testing > ------- > > There were changes in query output in two spark auto_sortmerge_join_16.q.out > files. They now match the query output of llap/auto_sortmerge_join_16.q.out. > > > Thanks, > > Karen Coppage > >