This is an automated email from the ASF dual-hosted git repository.
zivanfi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-format.git
The following commit(s) were added to refs/heads/master by this push:
new f0eab9d PARQUET-1592: rename bloom filter hash (#138)
f0eab9d is described below
commit f0eab9d64c3563e14cf2c4959f345372e1ba0c8f
Author: Chen, Junjie <[email protected]>
AuthorDate: Fri Jun 14 00:44:48 2019 +0800
PARQUET-1592: rename bloom filter hash (#138)
---
src/main/thrift/parquet.thrift | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/thrift/parquet.thrift b/src/main/thrift/parquet.thrift
index 834bc76..d09bb76 100644
--- a/src/main/thrift/parquet.thrift
+++ b/src/main/thrift/parquet.thrift
@@ -572,14 +572,14 @@ union BloomFilterAlgorithm {
/** Hash strategy type annotation. It uses Murmur3Hash_x64_128 from the
original SMHasher
* repo by Austin Appleby.
**/
-struct Murmur3 {}
+struct Murmur3Hash {}
/**
* The hash function used in Bloom filter. This function takes the hash of a
column value
* using plain encoding.
**/
union BloomFilterHash {
/** Murmur3 Hash Strategy. **/
- 1: Murmur3 MURMUR3;
+ 1: Murmur3Hash MURMUR3;
}
/**
* Bloom filter header is stored at beginning of Bloom filter data of each
column