Skip to content
Snippets Groups Projects
Commit 6c751940 authored by Cheng Lian's avatar Cheng Lian Committed by Reynold Xin
Browse files

[HOTFIX] [SQL] Fixes compilation error

Jenkins master builders are currently broken by a merge conflict between PR #8584 and PR #8155.

Author: Cheng Lian <lian@databricks.com>

Closes #8614 from liancheng/hotfix/fix-pr-8155-8584-conflict.
parent 47058ca5
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,7 @@ class SQLConfSuite extends QueryTest with SharedSQLContext {
val original = sqlContext.conf.numShufflePartitions
try{
sql(s"set ${SQLConf.Deprecated.MAPRED_REDUCE_TASKS}=10")
assert(ctx.conf.numShufflePartitions === 10)
assert(sqlContext.conf.numShufflePartitions === 10)
} finally {
sql(s"set ${SQLConf.SHUFFLE_PARTITIONS}=$original")
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment