-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-12978][SQL] Skip unnecessary final group-by when input data already clustered with group-by keys #10896
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
Closed
Closed
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
85a845f
Skip unnecessary final group-by when input data already clustered
maropu f3659b7
Rename an argument in planAggregateWithoutDistinct
maropu c4242ea
Fix style errors
maropu a5addeb
Apply comments
maropu 74fa277
Re-Implement in EnsureRequirements
maropu b747085
Fix bugs in planStreamingAggregation
maropu cb51727
Fix comments in AggUtils
maropu 5de4871
Refactor logics in EnsureRequirements
maropu dc6a7f2
Fix bugs
maropu 7aff3ad
Fix tests
maropu 000c501
Update comments
maropu 2615a6e
Add tests
maropu 91701eb
Fix a syntax error
maropu 74a14d7
Add tests
maropu e37ef6a
Add a superclass for *AggregateExec
maropu 8b64305
Replace isSupportPartial with an extractor
maropu 0375ac6
Rename the extractor
maropu 86068d0
Replace trait with sueprclass
maropu 69751bb
Apply minor comments
maropu d5e0ed3
Add a new function to check if it supports partial agg
maropu ac68145
Apply comments
maropu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix a syntax error
- Loading branch information
commit 91701eb5171555ce73ba6b190b41cc17f05eee8c
There are no files selected for viewing
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
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.
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.
Also add a test for non-partial aggregation with a regular (non distinct) aggregate?
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.
Added