-
Notifications
You must be signed in to change notification settings - Fork 28.6k
[SPARK-16596] [SQL] Refactor DataSourceScanExec to do partition discovery at execution instead of planning time #14241
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 all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
d046364
Fri Jul 15 19:18:52 PDT 2016
ericl 36d6ef4
Sun Jul 17 14:28:47 PDT 2016
ericl 6c0eb0e
Sun Jul 17 14:29:46 PDT 2016
ericl 1a46602
Sun Jul 17 14:36:58 PDT 2016
ericl 5382334
Sun Jul 17 14:42:32 PDT 2016
ericl 98d6d74
Sun Jul 17 14:55:13 PDT 2016
ericl 0d4642a
Sun Jul 17 15:12:24 PDT 2016
ericl 9cc3337
Wed Jul 20 11:47:51 PDT 2016
ericl b45e253
Wed Jul 20 11:49:00 PDT 2016
ericl ebf2102
Wed Jul 20 12:50:42 PDT 2016
ericl bbf89a1
Wed Jul 20 12:52:49 PDT 2016
ericl 358eb9f
Wed Jul 20 13:07:47 PDT 2016
ericl 2d78051
exception is now wrapped
ericl a3d2c69
Merge branch 'master' into refactor
ericl 780fec5
Mon Jul 25 15:07:23 PDT 2016
ericl ac9547f
Merge remote-tracking branch 'upstream/master' into refactor
ericl ddb202e
fix compile
ericl d3bb6fe
Merge branch 'master' into refactor
ericl b4b2403
Thu Jul 28 11:46:08 PDT 2016
ericl 18f5543
Merge branch 'refactor' of github.com:ericl/spark into refactor
ericl 8c2b7df
Tue Aug 2 13:37:47 PDT 2016
ericl a76b432
Merge branch 'master' into refactor
ericl 704511e
Tue Aug 2 15:01:42 PDT 2016
ericl 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
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
395 changes: 318 additions & 77 deletions
395
sql/core/src/main/scala/org/apache/spark/sql/execution/ExistingRDD.scala
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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.
NIT: we cannot catch the proper exception?
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.
It's a nested exception, which is quite hard to match. The following assert checks for the right error message, which is the important bit I think.