Skip to content

Commit c529d9f

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ class FilterPushdownSuite extends PlanTest {
202202
val y = testRelation1.subquery('y)
203203

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

0 commit comments

Comments
 (0)