Make Sbbf Constructers Public#9569
Merged
alamb merged 1 commit intoapache:mainfrom Mar 20, 2026
Merged
Conversation
91c414d to
dc8aba8
Compare
dc8aba8 to
d003d88
Compare
friendlymatthew
pushed a commit
to pydantic/arrow-rs
that referenced
this pull request
Mar 21, 2026
# Which issue does this PR close? None # Rationale for this change We want to use the SBBF Bloom Filter, but need to construct/serialize it manually. Currently there is no way to create a new `Sbbf` outside of this crate. Alongside this: we want to store the `Sbbf` in a `FixedSizedBinary` column for some fancy indexing. # What changes are included in this PR? Some methods become public # Are these changes tested? N/A # Are there any user-facing changes? Yes, we add a few more public methods to the `Sbbf` struct
marc-pydantic
added a commit
to pydantic/datafusion-distributed
that referenced
this pull request
Apr 28, 2026
Point dependencies to pydantic forks which include: arrow-rs (pydantic-main @ 58.0.0): - sparse data fix: apache/arrow-rs#9509 - public Sbbf methods: apache/arrow-rs#9569 - string view unshred variant: apache/arrow-rs#9514 - fix extend_nulls panic for UnionArray: apache/arrow-rs#9607 datafusion (pydantic-main @ b4116da0d): - union coercion fixes: apache/datafusion#18825 - GC spilling fix: apache/datafusion#19444 - add arrow_try_cast UDF: apache/datafusion#21130 - leaf-level ProjectionMask for parquet projections: apache/datafusion#20925 - parquet Variant UDF filter pushdown with leaf pruning - support union comparison for try-cast
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Which issue does this PR close?
None
Rationale for this change
We want to use the SBBF Bloom Filter, but need to construct/serialize it manually. Currently there is no way to create a new
Sbbfoutside of this crate. Alongside this: we want to store theSbbfin aFixedSizedBinarycolumn for some fancy indexing.What changes are included in this PR?
Some methods become public
Are these changes tested?
N/A
Are there any user-facing changes?
Yes, we add a few more public methods to the
Sbbfstruct