Closed
Conversation
ac77b6b to
70a7d6b
Compare
70a7d6b to
e9b75b4
Compare
5e3d908 to
8566f21
Compare
8566f21 to
a2614bc
Compare
Codecov Report
@@ Coverage Diff @@
## master #8208 +/- ##
============================================
- Coverage 71.02% 64.35% -6.68%
- Complexity 4314 4315 +1
============================================
Files 1626 1584 -42
Lines 84929 83153 -1776
Branches 12783 12596 -187
============================================
- Hits 60325 53517 -6808
- Misses 20462 25786 +5324
+ Partials 4142 3850 -292
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
Member
Author
|
I can't establish whether this actually improves performance or not, though it definitely reduces allocation rate. I'm closing this in favour of delaying joins until after group by evaluation. It can be reopened later if necessary. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
We still see a large number of boxed integers when joining on an
INTcolumn, this replacesPrimaryKeywithJoinKeywhich has a specialised implementation when all the keys are fixed width.