You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by bl...@apache.org on 2022/02/20 16:26:07 UTC

[iceberg] branch master updated: API: Use murmur3_32_fixed in bucket unit tests (#4171)

This is an automated email from the ASF dual-hosted git repository.

blue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git


The following commit(s) were added to refs/heads/master by this push:
     new 462ba82  API: Use murmur3_32_fixed in bucket unit tests (#4171)
462ba82 is described below

commit 462ba82c7f559eb38d9114fe72b82285dff10fb2
Author: liliwei <hi...@gmail.com>
AuthorDate: Mon Feb 21 00:25:55 2022 +0800

    API: Use murmur3_32_fixed in bucket unit tests (#4171)
---
 api/src/test/java/org/apache/iceberg/transforms/TestBucketing.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/api/src/test/java/org/apache/iceberg/transforms/TestBucketing.java b/api/src/test/java/org/apache/iceberg/transforms/TestBucketing.java
index a663db7..1175bff 100644
--- a/api/src/test/java/org/apache/iceberg/transforms/TestBucketing.java
+++ b/api/src/test/java/org/apache/iceberg/transforms/TestBucketing.java
@@ -39,7 +39,7 @@ import org.junit.BeforeClass;
 import org.junit.Test;
 
 public class TestBucketing {
-  private static final HashFunction MURMUR3 = Hashing.murmur3_32();
+  private static final HashFunction MURMUR3 = Hashing.murmur3_32_fixed();
   private static Constructor<UUID> uuidBytesConstructor;
 
   @BeforeClass