Skip to content

Commit

Permalink
[SPARK-20101][SQL][FOLLOW-UP] use correct config name "spark.sql.colu…
Browse files Browse the repository at this point in the history
…mnVector.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 <ishizaki@jp.ibm.com>

Closes #19794 from kiszk/SPARK-20101-follow.
  • Loading branch information
kiszk authored and cloud-fan committed Nov 22, 2017
1 parent 2c0fe81 commit 572af50
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -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
Expand Down

0 comments on commit 572af50

Please sign in to comment.