[ https://issues.apache.org/jira/browse/HIVE-10062?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14382458#comment-14382458 ]
Hive QA commented on HIVE-10062: -------------------------------- {color:red}Overall{color}: -1 at least one tests failed Here are the results of testing the latest attachment: https://issues.apache.org/jira/secure/attachment/12707419/HIVE-10062.01.patch {color:red}ERROR:{color} -1 due to 2 failed/errored test(s), 8349 tests executed *Failed tests:* {noformat} org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver_groupby3_map org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver_index_skewtable {noformat} Test results: http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/3169/testReport Console output: http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/3169/console Test logs: http://ec2-174-129-184-35.compute-1.amazonaws.com/logs/PreCommit-HIVE-TRUNK-Build-3169/ Messages: {noformat} 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: 2 tests failed {noformat} This message is automatically generated. ATTACHMENT ID: 12707419 - PreCommit-HIVE-TRUNK-Build > HiveOnTez: Union followed by Multi-GB followed by Multi-insert loses data > ------------------------------------------------------------------------- > > Key: HIVE-10062 > URL: https://issues.apache.org/jira/browse/HIVE-10062 > Project: Hive > Issue Type: Bug > Reporter: Pengcheng Xiong > Assignee: Pengcheng Xiong > Priority: Critical > Attachments: HIVE-10062.01.patch > > > In q.test environment with src table, execute the following query: > {code} > CREATE TABLE DEST1(key STRING, value STRING) STORED AS TEXTFILE; > CREATE TABLE DEST2(key STRING, val1 STRING, val2 STRING) STORED AS TEXTFILE; > FROM (select 'tst1' as key, cast(count(1) as string) as value from src s1 > UNION all > select s2.key as key, s2.value as value from src s2) unionsrc > INSERT OVERWRITE TABLE DEST1 SELECT unionsrc.key, COUNT(DISTINCT > SUBSTR(unionsrc.value,5)) GROUP BY unionsrc.key > INSERT OVERWRITE TABLE DEST2 SELECT unionsrc.key, unionsrc.value, > COUNT(DISTINCT SUBSTR(unionsrc.value,5)) > GROUP BY unionsrc.key, unionsrc.value; > select * from DEST1; > select * from DEST2; > {code} > DEST1 and DEST2 should both have 310 rows. However, DEST2 only has 1 row > "tst1 500 1" -- This message was sent by Atlassian JIRA (v6.3.4#6332)