[ 
https://issues.apache.org/jira/browse/HIVE-9950?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14363507#comment-14363507
 ] 

Thejas M Nair commented on HIVE-9950:
-------------------------------------

[~mmccline] Can you please review this fix ?


> 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)

Reply via email to