[
https://issues.apache.org/jira/browse/HIVE-9950?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14376708#comment-14376708
]
Matt McCline commented on HIVE-9950:
------------------------------------
+1
> 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)