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:36 -0700
commiteb9308e183066ec76c466ee9b4c8fc64f60078ce (patch)
treebd6700d7eec708368c14800df3c01fd9156ad77a /project
parent7bbf313de551d7f0a877a6278d8f107ec7c21b12 (diff)
downloadspark-eb9308e183066ec76c466ee9b4c8fc64f60078ce.tar.gz
spark-eb9308e183066ec76c466ee9b4c8fc64f60078ce.tar.bz2
spark-eb9308e183066ec76c466ee9b4c8fc64f60078ce.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 (cherry picked from commit ea01affc34a8b816f92a71e0f8f6901397c8a4a3) Signed-off-by: Reynold Xin <rxin@apache.org>
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 c7e6a46713..d5ae8b7e09 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
)