Uh oh!
There was an error while loading. Please reload this page.
Count agg support multiple expressions - #5908
Conversation
3508b98 to
1262c52Compare
ozankabak
left a comment
There was a problem hiding this comment.
Left some minor comments inline, looks good to me in general. Thank you!
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
allenma
commented
Apr 8, 2023
Thank you @ozankabak for your careful review, have addressed all your comments, please confirm |
ozankabak
commented
Apr 8, 2023
LGTM |
mingmwang
commented
Apr 10, 2023
LGTM |
mingmwang
commented
Apr 10, 2023
@allenma
|
allenma
commented
Apr 10, 2023
@mingmwang Currently count distinct also don't support multiple expressions, will create another pr to address this. |
Which issue does this PR close?
Closes#5619
Rationale for this change
Most of other sql engines like pg, mysql, spark support count for multiple expressions like: select count(col1, col2) from table1;
What changes are included in this PR?
Support count for multiple expressions, when any expression return null for each row, the row will not be counted.
Are these changes tested?
Yes, add new ut and e2e test
Are there any user-facing changes?
No
No