aboutsummaryrefslogtreecommitdiff
path: root/examples/src
diff options
context:
space:
mode:
authorKun Li <jacky.likun@gmail.com>2014-10-16 19:00:10 -0700
committerAndrew Or <andrewor14@gmail.com>2014-10-16 19:00:19 -0700
commit61e590354c08e0ee6215ead26e6dcda0e9ad501b (patch)
tree96a5f07863d918fb1d8b1c1c14b7450ce1cb47f4 /examples/src
parent925e22d3132b983a2fcee31e3878b680c7ff92da (diff)
downloadspark-61e590354c08e0ee6215ead26e6dcda0e9ad501b.tar.gz
spark-61e590354c08e0ee6215ead26e6dcda0e9ad501b.tar.bz2
spark-61e590354c08e0ee6215ead26e6dcda0e9ad501b.zip
[SQL]typo in HiveFromSpark
Author: Kun Li <jacky.likun@gmail.com> Closes #2809 from jackylk/patch-1 and squashes the following commits: 46c926b [Kun Li] typo in HiveFromSpark (cherry picked from commit be2ec4a91d14f48e6323989fb0e0226a9d65bf7e) Signed-off-by: Andrew Or <andrewor14@gmail.com>
Diffstat (limited to 'examples/src')
-rw-r--r--examples/src/main/scala/org/apache/spark/examples/sql/hive/HiveFromSpark.scala2
1 files changed, 1 insertions, 1 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 e26f213e8a..0c52ef8ed9 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
@@ -28,7 +28,7 @@ object HiveFromSpark {
val sparkConf = new SparkConf().setAppName("HiveFromSpark")
val sc = new SparkContext(sparkConf)
- // A local hive context creates an instance of the Hive Metastore in process, storing the
+ // A local hive context creates an instance of the Hive Metastore in process, storing
// the warehouse data in the current directory. This location can be overridden by
// specifying a second parameter to the constructor.
val hiveContext = new HiveContext(sc)