Uploaded image for project: 'Hive'
  1. Hive
  2. HIVE-9950

fix rehash in CuckooSetBytes and CuckooSetLong

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • None
    • 1.2.0
    • Vectorization
    • None

    Description

      both classes have the following

      if (prev1 == null) {
        prev1 = t1;
        prev1 = t2;
      }
      

      most probably it should be

      if (prev1 == null) {
        prev1 = t1;
        prev2 = t2;
      }
      

      Attachments

        1. HIVE-9950.1.patch
          2 kB
          Alexander Pivovarov

        Issue Links

          Activity

            People

              apivovarov Alexander Pivovarov
              apivovarov Alexander Pivovarov
              Votes:
              0 Vote for this issue
              Watchers:
              5 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: