This is an automated email from the ASF dual-hosted git repository.
JingsongLi pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/paimon-rust.git
from b89aa34e fix(table): accept DataSplit version 9 and mirror
_WRITE_COLS_SEQUENCES (#745)
add 71d8d382 feat(file_index): add Java-compatible Bloom filter index
(#744)
No new revisions were added by this update.
Summary of changes:
Cargo.lock | 1 +
crates/paimon/Cargo.toml | 1 +
.../src/file_index/bloom_filter/bloom_filter_64.rs | 241 ++++++++
.../src/file_index/bloom_filter/fast_hash.rs | 328 ++++++++++
crates/paimon/src/file_index/bloom_filter/mod.rs | 675 +++++++++++++++++++++
crates/paimon/src/file_index/mod.rs | 5 +-
6 files changed, 1250 insertions(+), 1 deletion(-)
create mode 100644 crates/paimon/src/file_index/bloom_filter/bloom_filter_64.rs
create mode 100644 crates/paimon/src/file_index/bloom_filter/fast_hash.rs
create mode 100644 crates/paimon/src/file_index/bloom_filter/mod.rs