Skip to content

Commit

Permalink
Fix config defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
parthchandra committed Dec 16, 2024
1 parent 2cfef83 commit e56b3c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/src/main/scala/org/apache/comet/CometConf.scala
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ object CometConf extends ShimCometConf {
"that to enable native vectorized execution, both this config and " +
"'spark.comet.exec.enabled' need to be enabled.")
.booleanConf
.createWithDefault(true)
.createWithDefault(false)

val COMET_FULL_NATIVE_SCAN_ENABLED: ConfigEntry[Boolean] = conf(
"spark.comet.native.scan.enabled")
Expand All @@ -85,7 +85,7 @@ object CometConf extends ShimCometConf {
"read supported data sources (currently only Parquet is supported natively)." +
" By default, this config is true.")
.booleanConf
.createWithDefault(false)
.createWithDefault(true)

val COMET_NATIVE_RECORDBATCH_READER_ENABLED: ConfigEntry[Boolean] = conf(
"spark.comet.native.arrow.scan.enabled")
Expand Down

0 comments on commit e56b3c9

Please sign in to comment.