From bd2710bd79a140be3c49e6076d1e90bd00728753 Mon Sep 17 00:00:00 2001 From: Sunitha Kambhampati Date: Sat, 9 Mar 2019 08:51:19 +0900 Subject: [PATCH] [MINOR][SQL] Fix the typo in the spark.sql.extensions conf doc ## What changes were proposed in this pull request? Fix the typo (missing the s) in the class name (SparkSessionExtensions) in the doc for Spark conf spark.sql.extensions. ## How was this patch tested? Verified by checking that the configuration doc shows up correctly in spark-shell using the SET -v Closes #24020 from skambha/fixnametypo. Authored-by: Sunitha Kambhampati Signed-off-by: Hyukjin Kwon --- .../scala/org/apache/spark/sql/internal/StaticSQLConf.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/StaticSQLConf.scala b/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/StaticSQLConf.scala index 0a8dc2835e..fc07efbafb 100644 --- a/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/StaticSQLConf.scala +++ b/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/StaticSQLConf.scala @@ -100,7 +100,7 @@ object StaticSQLConf { val SPARK_SESSION_EXTENSIONS = buildStaticConf("spark.sql.extensions") .doc("A comma-separated list of classes that implement " + - "Function1[SparkSessionExtension, Unit] used to configure Spark Session extensions. The " + + "Function1[SparkSessionExtensions, Unit] used to configure Spark Session extensions. The " + "classes must have a no-args constructor. If multiple extensions are specified, they are " + "applied in the specified order. For the case of rules and planner strategies, they are " + "applied in the specified order. For the case of parsers, the last parser is used and each " +