You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by rx...@apache.org on 2014/04/28 08:57:32 UTC

git commit: Update the import package name for TestHive in sbt shell

Repository: spark
Updated Branches:
  refs/heads/master 71f4d2612 -> ea01affc3


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 <ha...@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


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/ea01affc
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/ea01affc
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/ea01affc

Branch: refs/heads/master
Commit: ea01affc34a8b816f92a71e0f8f6901397c8a4a3
Parents: 71f4d26
Author: Cheng Hao <ha...@intel.com>
Authored: Sun Apr 27 23:57:29 2014 -0700
Committer: Reynold Xin <rx...@apache.org>
Committed: Sun Apr 27 23:57:29 2014 -0700

----------------------------------------------------------------------
 project/SparkBuild.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/ea01affc/project/SparkBuild.scala
----------------------------------------------------------------------
diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index 48f234c..5adfbe3 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
   )