Skip to content

Commit 6bccd84

Browse files
committed
fix review findings
Change-Id: Ic4825dadecead44ffcda4dee9081fed75eb26a9e
1 parent 8be22b6 commit 6bccd84

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ class ConstantPropagationSuite extends PlanTest {
3939
ConstantPropagation,
4040
ConstantFolding,
4141
BooleanSimplification,
42-
SimplifyBinaryComparison,
4342
PruneFilters) :: Nil
4443
}
4544

@@ -159,7 +158,7 @@ class ConstantPropagationSuite extends PlanTest {
159158
.where(
160159
columnA === Literal(1) && columnA === Literal(2) && columnB === Add(columnA, Literal(3)))
161160

162-
val correctAnswer = testRelation.analyze
161+
val correctAnswer = testRelation
163162

164163
comparePlans(Optimize.execute(query.analyze), correctAnswer)
165164
}

0 commit comments

Comments
 (0)