-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support bloom filters in lists/nested columns #105
Conversation
|
||
bloomFilters = await reader.getBloomFiltersFor(["name", "quantity"]); | ||
it('writes bloom filters for stock,warehouse', async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
test a plain nested column bloom filter.
}); | ||
describe("a simple schema with a nested list", () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tests for a bloom filter for a nested list column.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One golfing suggestion, but otherwise it is great.
- Local build
- Local pack and install in a bad setup I had
All works!
Yes Co-authored-by: Wil Wade <[email protected]>
Problem
Could not create and read bloom filters for a nested list.
Solution
For bloom filters, treat column names as the full path and not just the first part of the path in the schema.
Closes #98
In the course of implementing this I ran across a couple of issues which are added (#104 #103 )
with @rlaferla
Change summary:
Steps to Verify: