You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by go...@apache.org on 2015/10/13 23:52:26 UTC

hive git commit: HIVE-12090: Dead-code: Vectorized map-join runs Murmurhash twice (Gopal V, reviewed by Matt McCline)

Repository: hive
Updated Branches:
  refs/heads/master 49ff918be -> bb791bacb


HIVE-12090: Dead-code: Vectorized map-join runs Murmurhash twice (Gopal V, reviewed by Matt McCline)


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/bb791bac
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/bb791bac
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/bb791bac

Branch: refs/heads/master
Commit: bb791bacb95fa753bd4e46170fc98dd63e862370
Parents: 49ff918
Author: Gopal V <go...@apache.org>
Authored: Tue Oct 13 14:51:52 2015 -0700
Committer: Gopal V <go...@apache.org>
Committed: Tue Oct 13 14:51:52 2015 -0700

----------------------------------------------------------------------
 .../hive/ql/exec/persistence/MapJoinBytesTableContainer.java       | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/bb791bac/ql/src/java/org/apache/hadoop/hive/ql/exec/persistence/MapJoinBytesTableContainer.java
----------------------------------------------------------------------
diff --git a/ql/src/java/org/apache/hadoop/hive/ql/exec/persistence/MapJoinBytesTableContainer.java b/ql/src/java/org/apache/hadoop/hive/ql/exec/persistence/MapJoinBytesTableContainer.java
index c92cf39..1305f75 100644
--- a/ql/src/java/org/apache/hadoop/hive/ql/exec/persistence/MapJoinBytesTableContainer.java
+++ b/ql/src/java/org/apache/hadoop/hive/ql/exec/persistence/MapJoinBytesTableContainer.java
@@ -704,8 +704,6 @@ public class MapJoinBytesTableContainer
 
     public JoinUtil.JoinResult setDirect(byte[] bytes, int offset, int length,
         BytesBytesMultiHashMap.Result hashMapResult) {
-
-      int keyHash = WriteBuffers.murmurHash(bytes, offset, length);
       aliasFilter = hashMap.getValueResult(bytes, offset, length, hashMapResult);
       dummyRow = null;
       if (hashMapResult.hasRows()) {