[ https://issues.apache.org/jira/browse/HIVE-15539?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15801091#comment-15801091 ]
Hive QA commented on HIVE-15539: -------------------------------- Here are the results of testing the latest attachment: https://issues.apache.org/jira/secure/attachment/12845769/HIVE-15539.03.patch {color:green}SUCCESS:{color} +1 due to 2 test(s) being added or modified. {color:red}ERROR:{color} -1 due to 34 failed/errored test(s), 10915 tests executed *Failed tests:* {noformat} TestDerbyConnector - did not produce a TEST-*.xml file (likely timed out) (batchId=233) org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver[auto_sortmerge_join_13] (batchId=59) org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver[case_sensitivity] (batchId=61) org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver[groupby_sort_1_23] (batchId=71) org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver[groupby_sort_skew_1_23] (batchId=8) org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver[input_testxpath] (batchId=28) org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver[udf_coalesce] (batchId=75) org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver[union17] (batchId=66) org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver[union18] (batchId=16) org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver[union19] (batchId=55) org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver[union31] (batchId=3) org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver[union_remove_6] (batchId=40) org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver[union_remove_6_subq] (batchId=35) org.apache.hadoop.hive.cli.TestMiniLlapCliDriver.testCliDriver[explainuser_2] (batchId=136) org.apache.hadoop.hive.cli.TestMiniLlapCliDriver.testCliDriver[orc_ppd_basic] (batchId=134) org.apache.hadoop.hive.cli.TestMiniLlapCliDriver.testCliDriver[orc_ppd_schema_evol_3a] (batchId=135) org.apache.hadoop.hive.cli.TestMiniLlapCliDriver.testCliDriver[unionDistinct_1] (batchId=135) org.apache.hadoop.hive.cli.TestMiniLlapLocalCliDriver.testCliDriver[auto_smb_mapjoin_14] (batchId=149) org.apache.hadoop.hive.cli.TestMiniLlapLocalCliDriver.testCliDriver[auto_sortmerge_join_13] (batchId=149) org.apache.hadoop.hive.cli.TestMiniLlapLocalCliDriver.testCliDriver[lineage3] (batchId=146) org.apache.hadoop.hive.cli.TestMiniLlapLocalCliDriver.testCliDriver[subquery_notin] (batchId=150) org.apache.hadoop.hive.cli.TestMiniLlapLocalCliDriver.testCliDriver[tez_union_multiinsert] (batchId=144) org.apache.hadoop.hive.cli.TestMiniLlapLocalCliDriver.testCliDriver[vector_auto_smb_mapjoin_14] (batchId=143) org.apache.hadoop.hive.cli.TestMiniTezCliDriver.testCliDriver[explainanalyze_2] (batchId=93) org.apache.hadoop.hive.cli.TestSparkCliDriver.testCliDriver[auto_smb_mapjoin_14] (batchId=119) org.apache.hadoop.hive.cli.TestSparkCliDriver.testCliDriver[auto_sortmerge_join_13] (batchId=121) org.apache.hadoop.hive.cli.TestSparkCliDriver.testCliDriver[groupby_sort_1_23] (batchId=128) org.apache.hadoop.hive.cli.TestSparkCliDriver.testCliDriver[groupby_sort_skew_1_23] (batchId=98) org.apache.hadoop.hive.cli.TestSparkCliDriver.testCliDriver[union17] (batchId=124) org.apache.hadoop.hive.cli.TestSparkCliDriver.testCliDriver[union18] (batchId=101) org.apache.hadoop.hive.cli.TestSparkCliDriver.testCliDriver[union19] (batchId=119) org.apache.hadoop.hive.cli.TestSparkCliDriver.testCliDriver[union31] (batchId=95) org.apache.hadoop.hive.cli.TestSparkCliDriver.testCliDriver[union_remove_6] (batchId=113) org.apache.hadoop.hive.cli.TestSparkCliDriver.testCliDriver[union_remove_6_subq] (batchId=110) {noformat} Test results: https://builds.apache.org/job/PreCommit-HIVE-Build/2797/testReport Console output: https://builds.apache.org/job/PreCommit-HIVE-Build/2797/console Test logs: http://104.198.109.242/logs/PreCommit-HIVE-Build-2797/ Messages: {noformat} Executing org.apache.hive.ptest.execution.TestCheckPhase Executing org.apache.hive.ptest.execution.PrepPhase Executing org.apache.hive.ptest.execution.ExecutionPhase Executing org.apache.hive.ptest.execution.ReportingPhase Tests exited with: TestsFailedException: 34 tests failed {noformat} This message is automatically generated. ATTACHMENT ID: 12845769 - PreCommit-HIVE-Build > Optimize complex multi-insert queries in Calcite > ------------------------------------------------ > > Key: HIVE-15539 > URL: https://issues.apache.org/jira/browse/HIVE-15539 > Project: Hive > Issue Type: Improvement > Components: Parser > Affects Versions: 2.2.0 > Reporter: Jesus Camacho Rodriguez > Assignee: Jesus Camacho Rodriguez > Attachments: HIVE-15539.03.patch > > > Currently multi-insert queries are not optimized by Calcite. Proper > integration with Calcite would include creating a _spool_ operator whose > output is reused by every _insert_ statement; however, _spool_ operator has > not been added to Calcite yet (CALCITE-481). > In the meantime, and since complex logic for multi-insert queries is in FROM > clause, we can optimize the FROM clause with Calcite and connect the > optimized result to the original query. > Initially, we will recognize three different cases: > - FROM clause is trivial, e.g., table reference, or not supported. No need to > optimize with Calcite. > - FROM clause is a subquery. Optimize the subquery with Calcite. > - FROM clause is a join. Rewrite join into a subquery and optimize it with > Calcite. Change references in INSERT statements to refer to subquery columns. > This should be beneficial for MERGE statements processing too, since MERGE > statements are treated as multi-insert queries by Hive. -- This message was sent by Atlassian JIRA (v6.3.4#6332)