-
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
Bug fix: expr_visitor was not visiting aggregate filter expressions #3548
Conversation
.build()?; | ||
|
||
let expected = "Aggregate: groupBy=[[#test.a]], aggr=[[COUNT(#test.b), COUNT(#test.b) FILTER (WHERE #c > Int32(42)) AS count2]]\ | ||
\n TableScan: test projection=[a, b, c]"; |
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.
Prior to the fix, the table scan projection was [a, b]
Thanks for the review @Dandandan! I am going to go ahead and merge since this seems uncontroversial and it unblocks a Dask SQL release |
Thanks @andygrove |
Benchmark runs are scheduled for baseline = 81b5794 and contender = 1261741. 1261741 is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
Which issue does this PR close?
Closes #3546
Rationale for this change
What changes are included in this PR?
Are there any user-facing changes?