aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMichael Armbrust <michael@databricks.com>2014-07-31 11:26:43 -0700
committerMichael Armbrust <michael@databricks.com>2014-07-31 11:26:43 -0700
commit72cfb13987bab07461266905930f84619b3a0068 (patch)
treef54cb89724c43628ba5b0fc8306c9bd53f74826e /examples
parent3072b96026fa3e63e8eef780f2b04dd81f11ea27 (diff)
downloadspark-72cfb13987bab07461266905930f84619b3a0068.tar.gz
spark-72cfb13987bab07461266905930f84619b3a0068.tar.bz2
spark-72cfb13987bab07461266905930f84619b3a0068.zip
[SPARK-2397][SQL] Deprecate LocalHiveContext
LocalHiveContext is redundant with HiveContext. The only difference is it creates `./metastore` instead of `./metastore_db`. Author: Michael Armbrust <michael@databricks.com> Closes #1641 from marmbrus/localHiveContext and squashes the following commits: e5ec497 [Michael Armbrust] Add deprecation version 626e056 [Michael Armbrust] Don't remove from imports yet 905cc5f [Michael Armbrust] Merge remote-tracking branch 'apache/master' into localHiveContext 1c2727e [Michael Armbrust] Deprecate LocalHiveContext
Diffstat (limited to 'examples')
-rw-r--r--examples/src/main/scala/org/apache/spark/examples/sql/hive/HiveFromSpark.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/src/main/scala/org/apache/spark/examples/sql/hive/HiveFromSpark.scala b/examples/src/main/scala/org/apache/spark/examples/sql/hive/HiveFromSpark.scala
index 66a23fac39..dc5290fb4f 100644
--- a/examples/src/main/scala/org/apache/spark/examples/sql/hive/HiveFromSpark.scala
+++ b/examples/src/main/scala/org/apache/spark/examples/sql/hive/HiveFromSpark.scala
@@ -19,7 +19,7 @@ package org.apache.spark.examples.sql.hive
import org.apache.spark.{SparkConf, SparkContext}
import org.apache.spark.sql._
-import org.apache.spark.sql.hive.LocalHiveContext
+import org.apache.spark.sql.hive.HiveContext
object HiveFromSpark {
case class Record(key: Int, value: String)
@@ -31,7 +31,7 @@ object HiveFromSpark {
// A local hive context creates an instance of the Hive Metastore in process, storing the
// the warehouse data in the current directory. This location can be overridden by
// specifying a second parameter to the constructor.
- val hiveContext = new LocalHiveContext(sc)
+ val hiveContext = new HiveContext(sc)
import hiveContext._
hql("CREATE TABLE IF NOT EXISTS src (key INT, value STRING)")