Skip to content

Commit

Permalink
Update FilterPushdownSuite.scala
Browse files Browse the repository at this point in the history
  • Loading branch information
pzzs committed May 23, 2015
1 parent d98bc35 commit 8df716a
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,11 +158,9 @@ class FilterPushdownSuite extends PlanTest {
.where('a === 1 && 'a === 2)
.select('a).analyze


comparePlans(optimized, correctAnswer)
}


test("joins: push to either side") {
val x = testRelation.subquery('x)
val y = testRelation.subquery('y)
Expand Down Expand Up @@ -218,7 +216,6 @@ class FilterPushdownSuite extends PlanTest {

comparePlans(optimized, correctAnswer)
}


test("joins: rewrite filter to push to either side") {
val x = testRelation.subquery('x)
Expand Down Expand Up @@ -596,6 +593,5 @@ class FilterPushdownSuite extends PlanTest {
.select('b).analyze

comparePlans(optimized1, analysis.EliminateSubQueries(correctAnswer1))

}
}

0 comments on commit 8df716a

Please sign in to comment.