[ https://issues.apache.org/jira/browse/HIVE-9950?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14360152#comment-14360152 ]
Hive QA commented on HIVE-9950: ------------------------------- {color:green}Overall{color}: +1 all checks pass Here are the results of testing the latest attachment: https://issues.apache.org/jira/secure/attachment/12704341/HIVE-9950.1.patch {color:green}SUCCESS:{color} +1 7762 tests passed Test results: http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/3029/testReport Console output: http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/3029/console Test logs: http://ec2-174-129-184-35.compute-1.amazonaws.com/logs/PreCommit-HIVE-TRUNK-Build-3029/ Messages: {noformat} Executing org.apache.hive.ptest.execution.PrepPhase Executing org.apache.hive.ptest.execution.ExecutionPhase Executing org.apache.hive.ptest.execution.ReportingPhase {noformat} This message is automatically generated. ATTACHMENT ID: 12704341 - PreCommit-HIVE-TRUNK-Build > fix rehash in CuckooSetBytes and CuckooSetLong > ---------------------------------------------- > > Key: HIVE-9950 > URL: https://issues.apache.org/jira/browse/HIVE-9950 > Project: Hive > Issue Type: Bug > Components: Vectorization > Reporter: Alexander Pivovarov > Assignee: Alexander Pivovarov > Priority: Minor > Attachments: HIVE-9950.1.patch > > > both classes have the following > {code} > if (prev1 == null) { > prev1 = t1; > prev1 = t2; > } > {code} > most probably it should be > {code} > if (prev1 == null) { > prev1 = t1; > prev2 = t2; > } > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)