-
Notifications
You must be signed in to change notification settings - Fork 65
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
Add support for COUNT and fix a bug in the GROUP BY HashMap optimization #1222
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #1222 +/- ##
==========================================
+ Coverage 84.20% 84.26% +0.05%
==========================================
Files 305 305
Lines 28777 28859 +82
Branches 3396 3408 +12
==========================================
+ Hits 24233 24318 +85
Misses 3162 3162
+ Partials 1382 1379 -3 ☔ View full report in Codecov by Sentry. |
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.
Thank you very much, I have added some suggestions and comments.
Please also have a look at the sonarcloud suggestions, those are complimentary to my suggestions.
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.
Almost done, this is already much better.
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.
Thank you.
As soon as the checks have finished, I will merge this.
|
@hannahbast @joka921 Fixed in #1224 |
Add support for COUNT and prepare adding support for the other aggregate expressions in the hash map-based implementation of GROUP BY.
Also fix a critical bug when grouped variables occur in expressions.