You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Alexander Pivovarov (JIRA)" <ji...@apache.org> on 2015/03/13 03:43:38 UTC

[jira] [Created] (HIVE-9950) fix rehash in CuckooSetBytes and CuckooSetLong

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)