Skip to content

Commit 572af50

Browse files
kiszkcloud-fan
authored andcommitted
[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](#17436 (comment)) 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.
1 parent 2c0fe81 commit 572af50

File tree

1 file changed

+1
-1
lines changed
  • sql/catalyst/src/main/scala/org/apache/spark/sql/internal

1 file changed

+1
-1
lines changed

sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ object SQLConf {
141141
.createWithDefault(true)
142142

143143
val COLUMN_VECTOR_OFFHEAP_ENABLED =
144-
buildConf("spark.sql.columnVector.offheap.enable")
144+
buildConf("spark.sql.columnVector.offheap.enabled")
145145
.internal()
146146
.doc("When true, use OffHeapColumnVector in ColumnarBatch.")
147147
.booleanConf

0 commit comments

Comments
 (0)