-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-4502][SQL] Parquet nested column pruning - foundation #21320
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
mallman
wants to merge
24
commits into
apache:master
from
VideoAmp:spark-4502-parquet_column_pruning-foundation
Closed
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
6e41081
[SPARK-4502][SQL] Parquet nested column pruning
0d0e8a0
Refactor SelectedFieldSuite to make its tests simpler and more
mallman 44e78cb
Remove test "select function over nested data" of unknown origin and
mallman 9488cb5
Improve readability of ParquetSchemaPruning and
mallman f3735b1
Don't handle non-data-field partition column names specially when
mallman 2120ab5
Add test coverage for ParquetSchemaPruning for partitioned tables whose
mallman 8d53bbd
Remove the ColumnarFileFormat type to put it in another PR
mallman e213471
Add test coverage for the enhancements to "is not null" constraint
mallman 9e6ef5f
Revert changes to QueryPlanConstraints.scala and basicPhysicalOperato…
mallman e6ea9c2
Revert a whitespace change in DataSourceScanExec.scala
mallman 2d02ab3
Remove modifications to ParquetFileFormat.scala and
mallman cfffc95
PR review: simplify some syntax and add a code doc
mallman 2779351
When creating a pruned schema by merging an array of root structs, sort
mallman 9329f77
Re-enable ignored test in ParquetSchemaPruningSuite.scala that is
mallman ec313c1
Enable schema pruning by default
mallman 42aff39
Revert "Enable schema pruning by default"
mallman 71f4c7b
Add a method to not only check a query's scan schemata, but verify th…
mallman 0e5594b
Revert "Revert "Enable schema pruning by default""
mallman 1573ae8
Revert changes to ParquetTest.scala. I'm sure they were useful at some
mallman 09dd655
Refactor code based on code review comments
ajacques 61c7937
Update terminology for parquet-mr reader in
mallman 97b3a51
Handle differences in letter case in columns and fields between query
mallman 2711746
Add test permutations to the "testMixedCasePruning" method to test
mallman e6baf68
Disable SQL schema pruning by default and revert changes to
mallman 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 code based on code review comments
Co-author: Hyukjin Kwon <[email protected]>
- Loading branch information
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
Oops, something went wrong.
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.
nit:
Expression->ExtractValue?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.
The code does not compile with that change.
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.
Alias takes:
Alias(child: Expression, name: String)