Repository: spark Updated Branches: refs/heads/master 2c0fe818a -> 572af5027
[SPARK-20101][SQL][FOLLOW-UP] use correct config name "spark.sql.columnVector.offheap.enabled" ## What changes were proposed in this pull request? This PR addresses [the spelling miss](https://github.com/apache/spark/pull/17436#discussion_r152189670) of the config name `spark.sql.columnVector.offheap.enabled`. We should use `spark.sql.columnVector.offheap.enabled`. ## How was this patch tested? Existing tests Author: Kazuaki Ishizaki <[email protected]> Closes #19794 from kiszk/SPARK-20101-follow. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/572af502 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/572af502 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/572af502 Branch: refs/heads/master Commit: 572af5027e45ca96e0d283a8bf7c84dcf476f9bc Parents: 2c0fe81 Author: Kazuaki Ishizaki <[email protected]> Authored: Wed Nov 22 13:27:20 2017 +0100 Committer: Wenchen Fan <[email protected]> Committed: Wed Nov 22 13:27:20 2017 +0100 ---------------------------------------------------------------------- .../src/main/scala/org/apache/spark/sql/internal/SQLConf.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/572af502/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala ---------------------------------------------------------------------- diff --git a/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala b/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala index 8485ed4..4eda9f3 100644 --- a/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala +++ b/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala @@ -141,7 +141,7 @@ object SQLConf { .createWithDefault(true) val COLUMN_VECTOR_OFFHEAP_ENABLED = - buildConf("spark.sql.columnVector.offheap.enable") + buildConf("spark.sql.columnVector.offheap.enabled") .internal() .doc("When true, use OffHeapColumnVector in ColumnarBatch.") .booleanConf --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
