-
Notifications
You must be signed in to change notification settings - Fork 1.9k
feat: Implement Spark bitmap_bit_position function
#20275
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
base: main
Are you sure you want to change the base?
feat: Implement Spark bitmap_bit_position function
#20275
Conversation
| use std::sync::Arc; | ||
|
|
||
| #[test] | ||
| fn test_bitmap_bit_position_int8() { |
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.
Could we move the tests to SLTs
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.
Are you suggesting deleting unit tests?
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.
We prefer having tests in SLTs instead of Rust code unit tests
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.
Moved all tests to SLTs
Which issue does this PR close?
N/A
Rationale for this change
Add new function: https://spark.apache.org/docs/latest/api/sql/index.html#bitmap_bit_position
What changes are included in this PR?
Are these changes tested?
Yes, tests added as part of this PR.
Are there any user-facing changes?
No, these are new function.