Skip to content

Commit 6c75194

Browse files
lianchengrxin
authored andcommitted
[HOTFIX] [SQL] Fixes compilation error
Jenkins master builders are currently broken by a merge conflict between PR #8584 and PR #8155. Author: Cheng Lian <[email protected]> Closes #8614 from liancheng/hotfix/fix-pr-8155-8584-conflict.
1 parent 47058ca commit 6c75194

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/SQLConfSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class SQLConfSuite extends QueryTest with SharedSQLContext {
8080
val original = sqlContext.conf.numShufflePartitions
8181
try{
8282
sql(s"set ${SQLConf.Deprecated.MAPRED_REDUCE_TASKS}=10")
83-
assert(ctx.conf.numShufflePartitions === 10)
83+
assert(sqlContext.conf.numShufflePartitions === 10)
8484
} finally {
8585
sql(s"set ${SQLConf.SHUFFLE_PARTITIONS}=$original")
8686
}

0 commit comments

Comments
 (0)