aboutsummaryrefslogtreecommitdiff
path: root/sql/hive
diff options
context:
space:
mode:
authorlfzCarlosC <lfz.carlos@gmail.com>2016-05-25 10:53:53 -0700
committerAndrew Or <andrew@databricks.com>2016-05-25 10:53:57 -0700
commit02c8072eea72425e89256347e1f373a3e76e6eba (patch)
tree1e30843ada001df76e3fc472bf7011165ac1e7ae /sql/hive
parentd6d3e50719b01005aa0e77349fc9a6ff88fecce3 (diff)
downloadspark-02c8072eea72425e89256347e1f373a3e76e6eba.tar.gz
spark-02c8072eea72425e89256347e1f373a3e76e6eba.tar.bz2
spark-02c8072eea72425e89256347e1f373a3e76e6eba.zip
[MINOR][MLLIB][STREAMING][SQL] Fix typos
fixed typos for source code for components [mllib] [streaming] and [SQL] None and obvious. Author: lfzCarlosC <lfz.carlos@gmail.com> Closes #13298 from lfzCarlosC/master.
Diffstat (limited to 'sql/hive')
-rw-r--r--sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveSessionState.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveSessionState.scala b/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveSessionState.scala
index 46579ecd85..081d85acb9 100644
--- a/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveSessionState.scala
+++ b/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveSessionState.scala
@@ -143,7 +143,7 @@ private[hive] class HiveSessionState(sparkSession: SparkSession)
* converted to a data source table, using the data source set by spark.sql.sources.default.
* The table in CTAS statement will be converted when it meets any of the following conditions:
* - The CTAS does not specify any of a SerDe (ROW FORMAT SERDE), a File Format (STORED AS), or
- * a Storage Hanlder (STORED BY), and the value of hive.default.fileformat in hive-site.xml
+ * a Storage Handler (STORED BY), and the value of hive.default.fileformat in hive-site.xml
* is either TextFile or SequenceFile.
* - The CTAS statement specifies TextFile (STORED AS TEXTFILE) as the file format and no SerDe
* is specified (no ROW FORMAT SERDE clause).