-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Move bit_and_or_xor unit tests to slt #10457
Conversation
Signed-off-by: NoeB <noe.brehm@bluewin.ch>
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.
LGTM apart from a minor nit 👍
create table t (c int) as values (4), (7), (4), (7), (15); | ||
|
||
query IT | ||
Select bit_xor(DISTINCT c), arrow_typeof(bit_xor(c)) from t; |
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.
Select bit_xor(DISTINCT c), arrow_typeof(bit_xor(c)) from t; | |
Select bit_xor(DISTINCT c), arrow_typeof(bit_xor(DISTINCT c)) from t; |
nit: Technically this I think (and same for the below ones)
@Jefffrey Thank you for the review, I added a new commit which adds the missing distinct for the type |
* move bit_and_or_xor unit tests to slt Signed-off-by: NoeB <noe.brehm@bluewin.ch> * Apply suggestions from code review --------- Signed-off-by: NoeB <noe.brehm@bluewin.ch>
Which issue does this PR close?
part of #10384
Rationale for this change
What changes are included in this PR?
Are these changes tested?
Are there any user-facing changes?