-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
ARROW-11063: [Rust] [Breaking] Validate null counts when building arrays #9041
Conversation
Removes the null_count() function, forcing the builder to always validate the null count
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.
The idea is good, and the code looks good. Thanks @nevi-me !
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.
This also looks good to me -- nice work @nevi-me !
There's a May someone who works on the next PR, fix the error for me :) |
Removes the null_count() function, forcing the builder to always validate the null count. This breaks existing code that provides null counts, with the required action being to remove that code. Closes apache#9041 from nevi-me/ARROW-11063 Authored-by: Neville Dipale <nevilledips@gmail.com> Signed-off-by: Andrew Lamb <andrew@nerdnetworks.org>
Removes the null_count() function, forcing the builder to always validate the null count.
This breaks existing code that provides null counts, with the required action being to remove that code.