-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-22141][SQL] Propagate empty relation before checking Cartesian products #19362
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -124,8 +124,6 @@ abstract class Optimizer(sessionCatalog: SessionCatalog) | |
| SimplifyCreateMapOps, | ||
| CombineConcats) ++ | ||
| extendedOperatorOptimizationRules: _*) :: | ||
| Batch("Check Cartesian Products", Once, | ||
| CheckCartesianProducts) :: | ||
| Batch("Join Reorder", Once, | ||
| CostBasedJoinReorder) :: | ||
| Batch("Decimal Optimizations", fixedPoint, | ||
|
|
@@ -136,6 +134,8 @@ abstract class Optimizer(sessionCatalog: SessionCatalog) | |
| Batch("LocalRelation", fixedPoint, | ||
| ConvertToLocalRelation, | ||
| PropagateEmptyRelation) :: | ||
| Batch("Check Cartesian Products", Once, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we should also add a comment here about the positioning ...
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Make sense. The PR is merged, what should I do now..
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Create a follow-up PR
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @gatorsmile I see, thanks! |
||
| CheckCartesianProducts) :: | ||
| Batch("OptimizeCodegen", Once, | ||
| OptimizeCodegen) :: | ||
| Batch("RewriteSubquery", Once, | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -200,6 +200,30 @@ class JoinSuite extends QueryTest with SharedSQLContext { | |
| Nil) | ||
| } | ||
|
|
||
| test("inner join, propagate empty relation before checking Cartesian products") { | ||
|
||
| val x = testData2.as("x") | ||
| val y = testData2.where($"a" === 2 && !($"a" === 2)).as("y") | ||
| checkAnswer( | ||
| x.join(y).where($"x.a" === $"y.a"), | ||
| Nil) | ||
| } | ||
|
|
||
| test("left outer join, propagate empty relation before checking Cartesian products") { | ||
| val x = testData2.where($"a" === 2 && !($"a" === 2)).as("x") | ||
| val y = testData2.as("y") | ||
| checkAnswer( | ||
| x.join(y, Seq.empty, "left_outer"), | ||
| Nil) | ||
| } | ||
|
|
||
| test("right outer join, propagate empty relation before checking Cartesian products") { | ||
| val x = testData2.as("x") | ||
| val y = testData2.where($"a" === 2 && !($"a" === 2)).as("y") | ||
| checkAnswer( | ||
| x.join(y, Seq.empty, "right_outer"), | ||
| Nil) | ||
| } | ||
|
|
||
| test("big inner join, 4 matches per row") { | ||
| val bigData = testData.union(testData).union(testData).union(testData) | ||
| val bigDataX = bigData.as("x") | ||
|
|
||
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.
I think the comment of
CheckCartesianProductsshould also be updated and add this constrain.