Uh oh!
There was an error while loading. Please reload this page.
[SPARK-16994][SQL] PushDownPredicate should not ignore limits. - #14583
Closed
dongjoon-hyun wants to merge 2 commits into
Closed
[SPARK-16994][SQL] PushDownPredicate should not ignore limits.#14583dongjoon-hyun wants to merge 2 commits into
dongjoon-hyun wants to merge 2 commits into
Conversation
Member
There was a problem hiding this comment.
Writing an end-to-end test case is not very helpful here.
You can write a new test case in the related optimizer rule.
SparkQA
commented
Aug 10, 2016
Test build #63548 has finished for PR 14583 at commit
|
SparkQA
commented
Aug 11, 2016
Test build #63581 has finished for PR 14583 at commit
|
dongjoon-hyun
commented
Aug 11, 2016
MemberAuthor
Retest this please |
SparkQA
commented
Aug 11, 2016
Test build #63589 has finished for PR 14583 at commit
|
SparkQA
commented
Aug 13, 2016
Test build #63732 has finished for PR 14583 at commit
|
dongjoon-hyun
commented
Aug 16, 2016
MemberAuthor
Hi, @rxin . |
SparkQA
commented
Aug 16, 2016
Test build #63854 has finished for PR 14583 at commit
|
SparkQA
commented
Aug 18, 2016
Test build #63986 has finished for PR 14583 at commit
|
rxin
commented
Aug 19, 2016
Contributor
I'm fixing this differently here: #14713 |
dongjoon-hyun
commented
Aug 19, 2016
MemberAuthor
Okay. Thanks, @rxin. |
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
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What changes were proposed in this pull request?
Currently,
filterandlimitare illegally permuted becausePushDownPredicateoptimizer pushesfiltersthroughlimit. This PR fixes that.Reported Error Scenario
After
How was this patch tested?
Pass the Jenkins with a new test case.