-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
GH-43986: [C++][Acero] Some code cleanup to Grouper
#43988
Conversation
|
This is a relatively trivial change, @pitrou @felipecrv @mapleFU would you please to take a look? Thanks. |
@@ -332,38 +332,6 @@ Result<std::unique_ptr<RowSegmenter>> RowSegmenter::Make( | |||
|
|||
namespace { | |||
|
|||
struct GrouperNoKeysImpl : Grouper { |
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.
So this is never used?
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.
Right, not used anywhere.
This reverts commit 2af171c.
Thanks for the improvements @zanmato1984 ! |
After merging your PR, Conbench analyzed the 4 benchmarking runs that have been run so far on merge-commit 27b43f4. There was 1 benchmark result indicating a performance regression:
The full Conbench report has more details. It also includes information about 133 possible false positives for unstable benchmarks that are known to sometimes produce them. |
…3988) ### Rationale for this change See apache#43986. ### What changes are included in this PR? Mostly trivial changes, plus removing one `Grouper` implementation that's not wired. ### Are these changes tested? No new tests needed. ### Are there any user-facing changes? None. * GitHub Issue: apache#43986 Authored-by: Ruoxi Sun <[email protected]> Signed-off-by: Antoine Pitrou <[email protected]>
Rationale for this change
See #43986.
What changes are included in this PR?
Mostly trivial changes, plus removing one
Grouper
implementation that's not wired.Are these changes tested?
No new tests needed.
Are there any user-facing changes?
None.
Grouper
-related code #43986