Skip to content

Commit

Permalink
Fix hash64 issue which is the root cause of compute stats failure
Browse files Browse the repository at this point in the history
  • Loading branch information
segelyang committed Jul 14, 2016
1 parent 030a5ec commit cedbcc0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions be/src/util/hash-util.h
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,6 @@ class HashUtil {

while (data != end) {
uint64_t k = *data++;
if(k == 0)
break;
k *= MURMUR_PRIME;
k ^= k >> MURMUR_R;
k *= MURMUR_PRIME;
Expand Down

0 comments on commit cedbcc0

Please sign in to comment.