Skip to content

Commit 3293994

Browse files
author
Davies Liu
committed
fix conflict
1 parent 43dba95 commit 3293994

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/core/src/test/scala/org/apache/spark/sql/execution/WholeStageCodegenSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class WholeStageCodegenSuite extends SparkPlanTest with SharedSQLContext {
6868
val plan = df.queryExecution.executedPlan
6969
assert(plan.find(p =>
7070
p.isInstanceOf[WholeStageCodegen] &&
71-
p.asInstanceOf[WholeStageCodegen].plan.isInstanceOf[Sort]).isDefined)
71+
p.asInstanceOf[WholeStageCodegen].child.isInstanceOf[Sort]).isDefined)
7272
assert(df.collect() === Array(Row(1), Row(2), Row(3)))
7373
}
7474
}

0 commit comments

Comments
 (0)