Skip to content

Commit 5c43b2a

Browse files
committed
fix test error
1 parent b16f88e commit 5c43b2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/HiveQuerySuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1196,7 +1196,7 @@ class HiveQuerySuite extends HiveComparisonTest with SQLTestUtils with BeforeAnd
11961196
"TBLPROPERTIES ('numRows'='0', 'rawDataSize'='60000000000', 'totalSize'='8000000000000')")
11971197

11981198
withSQLConf(SQLConf.CBO_ENABLED.key -> "true", SQLConf.JOIN_REORDER_ENABLED.key -> "true") {
1199-
val plan = sql("select count(*) from small t1 join big t2 on (t1.c1 = t2.c1)")
1199+
val plan = sql("select * from small t1 join big t2 on (t1.c1 = t2.c1)")
12001200
.queryExecution.executedPlan
12011201
val buildSide = plan.children.head.asInstanceOf[BroadcastHashJoinExec].buildSide
12021202
assert(buildSide === BuildLeft)

0 commit comments

Comments
 (0)