[ 
https://issues.apache.org/jira/browse/HIVE-9950?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Alexander Pivovarov updated HIVE-9950:
--------------------------------------
    Attachment: HIVE-9950.1.patch

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

Reply via email to