-
Type:
Bug
-
Status: Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 4.0.0
-
Fix Version/s: 3.2.0
-
Component/s: Query Processor
-
Labels:None
HIVE-18866 introduced a fast-path for integer -> murmur hash, but the change hasn't been applied to BloomKFilter for integers.
public class BloomKFilter { private final byte[] BYTE_ARRAY_4 = new byte[4]; private final byte[] BYTE_ARRAY_8 = new byte[8];
Remove these objects and use the fast-path.