-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-15752] [SQL] Optimize metadata only query that has an aggregate whose children are deterministic project or filter operators. #13494
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
52 commits
Select commit
Hold shift + click to select a range
2ca2c38
init commit
lianhuiwang edea710
fix unit test
lianhuiwang 8426522
Merge branch 'apache-master' into metadata-only
lianhuiwang 153293e
fix unit test
lianhuiwang 7dfb743
update
lianhuiwang 68e6d6d
Revert "fix unit test"
lianhuiwang 595ef36
Revert "fix unit test"
lianhuiwang 7d7ece0
Merge branch 'apache-master' into metadata-only
lianhuiwang 2e55a9d
Merge branch 'apache-master' into metadata-only
lianhuiwang b2b6eba
update
lianhuiwang c5a291e
Merge branch 'apache-master' into metadata-only
lianhuiwang 6404c1f
update opt for core
lianhuiwang 1bb5812
refactor
lianhuiwang 7e3729e
add ut
lianhuiwang fbf5d61
fix ut
lianhuiwang 3411fd6
fix project
lianhuiwang aefab7f
address comments
lianhuiwang c5ccdea
fix cube/rollup
lianhuiwang ae6cf9f
fix style
lianhuiwang 159331b
refactor
lianhuiwang 3a1438b
refactor
lianhuiwang c0a7d59
update
lianhuiwang a4045ca
add comments
lianhuiwang 0a023e7
fix minor
lianhuiwang a9b38ab
rename
lianhuiwang a5ea995
update
lianhuiwang 1bed08d
fix monir
lianhuiwang a22e962
refactor
lianhuiwang 41fef2c
update
lianhuiwang bd53678
Merge branch 'apache-master' into metadata-only
lianhuiwang 88f7308
update
lianhuiwang 2568193
add ut
lianhuiwang 26a97f4
address comments
lianhuiwang 4297f9f
update name
lianhuiwang 1a65aa7
address comments
lianhuiwang d5e0df4
update
lianhuiwang 9d6dd76
update2
lianhuiwang 9cb01d8
update
lianhuiwang 3e2687d
doc improve
cloud-fan 2b4faf3
update
cloud-fan 88fd3bf
Merge pull request #2 from cloud-fan/metadata-only
lianhuiwang a894bb7
delete cases
lianhuiwang 9546b40
Merge branch 'metadata-only' of https://github.com/lianhuiwang/spark …
lianhuiwang 85b695b
update ut
lianhuiwang bcfe8e5
Merge branch 'master' of https://github.com/apache/spark into metadat…
lianhuiwang 67211be
Merge branch 'master' of https://github.com/apache/spark into metadat…
lianhuiwang 501f93b
address commetns
lianhuiwang 8ee2a8c
refactor
lianhuiwang d888c85
fix minor
lianhuiwang ff16509
update
lianhuiwang 358ad13
remove duplicate code
lianhuiwang 030776a
fix minor
lianhuiwang 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
refactor
- Loading branch information
commit 3a1438ba41c94ed44dbc0dc43c2457509f5e4fcc
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
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
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.
We need to think about it more carefully, i.e. how can the partition information propagate up from table relation?
It's obvious that
Filtercan retain all partition information, but for others, it's not trivial to explain.Since this PR definitely need more people to review, how about we only handle
Filterfor now and improve it later? Then it's easier for other people to review and get this PR in. Thanks!