-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-11164] [SQL] Add InSet pushdown filter back for Parquet #10278
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 5 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
01e4cdf
Merge remote-tracking branch 'upstream/master'
gatorsmile 6835704
Merge remote-tracking branch 'upstream/master'
gatorsmile 9180687
Merge remote-tracking branch 'upstream/master'
gatorsmile b38a21e
SPARK-11633
gatorsmile d2b84af
Merge remote-tracking branch 'upstream/master' into joinMakeCopy
gatorsmile fda8025
Merge remote-tracking branch 'upstream/master'
gatorspark ac0dccd
Merge branch 'master' of https://github.com/gatorsmile/spark
gatorspark 6e0018b
Merge remote-tracking branch 'upstream/master'
0546772
converge
gatorsmile b37a64f
converge
gatorsmile 661260b
Merge remote-tracking branch 'upstream/master'
gatorsmile 2dfa0fd
Merge remote-tracking branch 'upstream/master'
gatorsmile d929d9b
Merge remote-tracking branch 'upstream/master'
gatorsmile 4070d2f
Merge remote-tracking branch 'upstream/master'
gatorsmile 38dcfb2
Merge remote-tracking branch 'upstream/master'
gatorsmile cb3fc83
Merge remote-tracking branch 'upstream/master'
gatorsmile 79be2c3
added a condition for `Not` operator in ParquetFilter.
gatorsmile 2ff70bf
added two more cases for BooleanSimplication
gatorsmile c9af771
improved the code comments.
gatorsmile 50733c6
push down IN.
gatorsmile e219ac1
address comments.
gatorsmile df3d8ab
removed the fix about 'Not' filtering
gatorsmile 8dbacc7
Merge remote-tracking branch 'upstream/master'
gatorsmile 7678ef5
Merge branch 'parquetFilterNot' into pFilterIn
gatorsmile 64cd5e6
Merge branch 'parquetFilterNot' into pFilterIn
gatorsmile 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
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.
Looks like this is the real problem. It is not safe to just push one side at here. This is the place where we drop that
InbecausecreateFilter(schema, In(...))returnsNone.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.
@gatorsmile I am also going to try to have a fix. We can later see which one is a more suitable.
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.
Glad to see your fix. : ) Thank you!