aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorCheng Hao <hao.cheng@intel.com>2014-04-27 23:57:29 -0700
committerReynold Xin <rxin@apache.org>2014-04-27 23:57:29 -0700
commitea01affc34a8b816f92a71e0f8f6901397c8a4a3 (patch)
treec9c0950c8cac02de156dfdc5363b7201aa7f5556 /project
parent71f4d2612a1be2904ed1536280680abc2dd212e7 (diff)
downloadspark-ea01affc34a8b816f92a71e0f8f6901397c8a4a3.tar.gz
spark-ea01affc34a8b816f92a71e0f8f6901397c8a4a3.tar.bz2
spark-ea01affc34a8b816f92a71e0f8f6901397c8a4a3.zip
Update the import package name for TestHive in sbt shell
sbt/sbt hive/console will fail as TestHive changed its package from "org.apache.spark.sql.hive" to "org.apache.spark.sql.hive.test". Author: Cheng Hao <hao.cheng@intel.com> Closes #574 from chenghao-intel/hive_console and squashes the following commits: de14035 [Cheng Hao] Update the import package name for TestHive in sbt shell
Diffstat (limited to 'project')
-rw-r--r--project/SparkBuild.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index 48f234ce87..5adfbe373c 100644
--- a/project/SparkBuild.scala
+++ b/project/SparkBuild.scala
@@ -506,7 +506,7 @@ object SparkBuild extends Build {
|import org.apache.spark.sql.catalyst.util._
|import org.apache.spark.sql.execution
|import org.apache.spark.sql.hive._
- |import org.apache.spark.sql.hive.TestHive._
+ |import org.apache.spark.sql.hive.test.TestHive._
|import org.apache.spark.sql.parquet.ParquetTestData""".stripMargin
)