Skip to content

Commit 6e47e56

Browse files
committed
Fix the compilation error
1 parent 8973ced commit 6e47e56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sql/hive/compatibility/src/test/scala/org/apache/spark/sql/hive/execution/SortMergeCompatibilitySuite.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ import org.apache.spark.sql.hive.test.TestHive
2626
class SortMergeCompatibilitySuite extends HiveCompatibilitySuite {
2727
override def beforeAll() {
2828
super.beforeAll()
29-
TestHive.setConf(SQLConf.SORTMERGE_JOIN, "true")
29+
TestHive.setConf(SQLConf.SORTMERGE_JOIN.key, "true")
3030
}
3131

3232
override def afterAll() {
33-
TestHive.setConf(SQLConf.SORTMERGE_JOIN, "false")
33+
TestHive.setConf(SQLConf.SORTMERGE_JOIN.key, "false")
3434
super.afterAll()
3535
}
3636

0 commit comments

Comments
 (0)