We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a04ffae commit ae3af6dCopy full SHA for ae3af6d
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/optimizer/FilterPushdownSuite.scala
@@ -196,14 +196,14 @@ class FilterPushdownSuite extends PlanTest {
196
197
comparePlans(optimized, correctAnswer)
198
}
199
-
+
200
test("joins: push to one side after transformCondition") {
201
val x = testRelation.subquery('x)
202
val y = testRelation1.subquery('y)
203
204
val originalQuery = {
205
x.join(y, Inner)
206
- .where(("x.a".attr === 1 && "y.d".attr === "x.b".attr) ||
+ .where(("x.a".attr === 1 && "y.d".attr === "x.b".attr) ||
207
("x.a".attr === 1 && "y.d".attr === "x.c".attr))
208
209
0 commit comments