aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCheng Lian <lian@databricks.com>2016-05-18 18:58:24 +0800
committerCheng Lian <lian@databricks.com>2016-05-18 18:58:24 +0800
commitc4a45fd855252f0f7130cdcc08486591fadab7df (patch)
tree49520162ae3b898a908617106f17cb4e2236149b
parentd2f81df1ba67f5d3fc39719d9a67c52d7903e59e (diff)
downloadspark-c4a45fd855252f0f7130cdcc08486591fadab7df.tar.gz
spark-c4a45fd855252f0f7130cdcc08486591fadab7df.tar.bz2
spark-c4a45fd855252f0f7130cdcc08486591fadab7df.zip
[SPARK-15334][SQL][HOTFIX] Fixes compilation error for Scala 2.10
## What changes were proposed in this pull request? This PR fixes a Scala 2.10 compilation failure introduced in PR #13127. ## How was this patch tested? Jenkins build. Author: Cheng Lian <lian@databricks.com> Closes #13166 from liancheng/hotfix-for-scala-2.10.
-rw-r--r--sql/hive/src/test/scala/org/apache/spark/sql/hive/client/VersionsSuite.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/hive/src/test/scala/org/apache/spark/sql/hive/client/VersionsSuite.scala b/sql/hive/src/test/scala/org/apache/spark/sql/hive/client/VersionsSuite.scala
index 57e8db7e88..d46c4e7b2b 100644
--- a/sql/hive/src/test/scala/org/apache/spark/sql/hive/client/VersionsSuite.scala
+++ b/sql/hive/src/test/scala/org/apache/spark/sql/hive/client/VersionsSuite.scala
@@ -137,7 +137,7 @@ class VersionsSuite extends SparkFunSuite with Logging {
hiveMetastoreVersion = version,
hadoopVersion = VersionInfo.getVersion,
sparkConf = sparkConf,
- hadoopConf,
+ hadoopConf = hadoopConf,
config = buildConf(),
ivyPath = ivyPath).createClient()
}