In multi-stage aggregate, directly store column index as identifier#11617
In multi-stage aggregate, directly store column index as identifier#11617Jackie-Jiang merged 2 commits intoapache:masterfrom
Conversation
e50179d to
01c1200
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #11617 +/- ##
============================================
- Coverage 63.08% 63.05% -0.04%
- Complexity 1106 1109 +3
============================================
Files 2326 2326
Lines 124942 124956 +14
Branches 19147 19152 +5
============================================
- Hits 78821 78785 -36
- Misses 40499 40549 +50
Partials 5622 5622
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
01c1200 to
9f1fd3f
Compare
There was a problem hiding this comment.
intermediate agg always have 1 real-argument (it cannot even be 0 b/c count would've been converted to SUM), and the rest are placeholders, why do we need to check the numArguments again here? simply do the loop with for (int i = 1 ... should be suffice?
There was a problem hiding this comment.
Separated the code path for raw input vs intermediate input
9f1fd3f to
8c91320
Compare
Avoid constructing the column name to index map and converting back and forth