We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b16f88e commit 5c43b2aCopy full SHA for 5c43b2a
sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/HiveQuerySuite.scala
@@ -1196,7 +1196,7 @@ class HiveQuerySuite extends HiveComparisonTest with SQLTestUtils with BeforeAnd
1196
"TBLPROPERTIES ('numRows'='0', 'rawDataSize'='60000000000', 'totalSize'='8000000000000')")
1197
1198
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)")
+ val plan = sql("select * from small t1 join big t2 on (t1.c1 = t2.c1)")
1200
.queryExecution.executedPlan
1201
val buildSide = plan.children.head.asInstanceOf[BroadcastHashJoinExec].buildSide
1202
assert(buildSide === BuildLeft)
0 commit comments