-
Notifications
You must be signed in to change notification settings - Fork 370
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
make sure aggregation uses fast path if a single column is used #2423
Comments
Looking into this. Pasting some of your Slack messages here in case the messages get deleted:
|
The key thing to do here is to rewrite code like:
to:
before executing it. We should check in the syntax Or even better - check that |
…o sa-/JuliaData#2423-single-column-agg-fast-path
Can this be closed now? |
yes |
I will fix it. Currently
:x => sum
uses a fast path, but[:x] => sum
does not.The text was updated successfully, but these errors were encountered: