aboutsummaryrefslogtreecommitdiff
path: root/sql/core
diff options
context:
space:
mode:
authorDaoyuan Wang <daoyuan.wang@intel.com>2016-03-16 22:52:10 -0700
committerReynold Xin <rxin@databricks.com>2016-03-16 22:52:10 -0700
commitd1c193a2f1a5e2b98f5df1b86d7a7ec0ced13668 (patch)
tree94aef4269107c7dbb650980116c9bd2ca72566ba /sql/core
parentc890c359b1dfb64274d1d0067b1e16d834035f11 (diff)
downloadspark-d1c193a2f1a5e2b98f5df1b86d7a7ec0ced13668.tar.gz
spark-d1c193a2f1a5e2b98f5df1b86d7a7ec0ced13668.tar.bz2
spark-d1c193a2f1a5e2b98f5df1b86d7a7ec0ced13668.zip
[SPARK-12855][MINOR][SQL][DOC][TEST] remove spark.sql.dialect from doc and test
## What changes were proposed in this pull request? Since developer API of plug-able parser has been removed in #10801 , docs should be updated accordingly. ## How was this patch tested? This patch will not affect the real code path. Author: Daoyuan Wang <daoyuan.wang@intel.com> Closes #11758 from adrian-wang/spark12855.
Diffstat (limited to 'sql/core')
-rw-r--r--sql/core/src/main/scala/org/apache/spark/sql/SQLContext.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/core/src/main/scala/org/apache/spark/sql/SQLContext.scala b/sql/core/src/main/scala/org/apache/spark/sql/SQLContext.scala
index e4d9308692..0f0342ce85 100644
--- a/sql/core/src/main/scala/org/apache/spark/sql/SQLContext.scala
+++ b/sql/core/src/main/scala/org/apache/spark/sql/SQLContext.scala
@@ -80,7 +80,7 @@ class SQLContext private[sql](
def this(sparkContext: JavaSparkContext) = this(sparkContext.sc)
// If spark.sql.allowMultipleContexts is true, we will throw an exception if a user
- // wants to create a new root SQLContext (a SLQContext that is not created by newSession).
+ // wants to create a new root SQLContext (a SQLContext that is not created by newSession).
private val allowMultipleContexts =
sparkContext.conf.getBoolean(
SQLConf.ALLOW_MULTIPLE_CONTEXTS.key,