Repository: spark Updated Branches: refs/heads/master 9d8c83179 -> a8c6d0f64
[MINOR] Improve SQLConf messages ### What changes were proposed in this pull request? The current SQLConf messages of `spark.sql.hive.convertMetastoreParquet` and `spark.sql.hive.convertMetastoreOrc` are not very clear to end users. This PR is to improve them. ### How was this patch tested? N/A Author: gatorsmile <gatorsm...@gmail.com> Closes #18657 from gatorsmile/msgUpdates. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/a8c6d0f6 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/a8c6d0f6 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/a8c6d0f6 Branch: refs/heads/master Commit: a8c6d0f64ec45064e23004928814c968df11d97a Parents: 9d8c831 Author: gatorsmile <gatorsm...@gmail.com> Authored: Tue Jul 18 09:15:18 2017 +0800 Committer: Wenchen Fan <wenc...@databricks.com> Committed: Tue Jul 18 09:15:18 2017 +0800 ---------------------------------------------------------------------- .../src/main/scala/org/apache/spark/sql/hive/HiveUtils.scala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/a8c6d0f6/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveUtils.scala ---------------------------------------------------------------------- diff --git a/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveUtils.scala b/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveUtils.scala index a29d7a7..2a522a1 100644 --- a/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveUtils.scala +++ b/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveUtils.scala @@ -86,8 +86,8 @@ private[spark] object HiveUtils extends Logging { .createWithDefault("builtin") val CONVERT_METASTORE_PARQUET = buildConf("spark.sql.hive.convertMetastoreParquet") - .doc("When set to false, Spark SQL will use the Hive SerDe for parquet tables instead of " + - "the built in support.") + .doc("When set to true, the built-in Parquet reader and writer are used to process " + + "parquet tables created by using the HiveQL syntax, instead of Hive serde.") .booleanConf .createWithDefault(true) @@ -101,8 +101,8 @@ private[spark] object HiveUtils extends Logging { val CONVERT_METASTORE_ORC = buildConf("spark.sql.hive.convertMetastoreOrc") .internal() - .doc("When set to false, Spark SQL will use the Hive SerDe for ORC tables instead of " + - "the built in support.") + .doc("When set to true, the built-in ORC reader and writer are used to process " + + "ORC tables created by using the HiveQL syntax, instead of Hive serde.") .booleanConf .createWithDefault(false) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org