Skip to content

Commit ae3af6d

Browse files
committed
Update FilterPushdownSuite.scala
1 parent a04ffae commit ae3af6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/optimizer/FilterPushdownSuite.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,14 +196,14 @@ class FilterPushdownSuite extends PlanTest {
196196

197197
comparePlans(optimized, correctAnswer)
198198
}
199-
199+
200200
test("joins: push to one side after transformCondition") {
201201
val x = testRelation.subquery('x)
202202
val y = testRelation1.subquery('y)
203203

204204
val originalQuery = {
205205
x.join(y, Inner)
206-
.where(("x.a".attr === 1 && "y.d".attr === "x.b".attr) ||
206+
.where(("x.a".attr === 1 && "y.d".attr === "x.b".attr) ||
207207
("x.a".attr === 1 && "y.d".attr === "x.c".attr))
208208
}
209209

0 commit comments

Comments
 (0)