Alexander Pivovarov created HIVE-9950:
-----------------------------------------
Summary: 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
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)