Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

Commit

Permalink
Set default value to -1
Browse files Browse the repository at this point in the history
  • Loading branch information
PHILO-HE committed Sep 7, 2022
1 parent 2a99d57 commit 2e9998a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class GazellePluginConfig(conf: SQLConf) extends Logging {
// the whole stage fallback. This feature will be turned off if -1 is specified.
val WHOLE_STAGE_FALLBACK_THRESHOLD_KEY = "spark.oap.sql.columnar.wholeStage.fallback.threshold"
val WHOLE_STAGE_FALLBACK_THRESHOLD: Int =
conf.getConfString(WHOLE_STAGE_FALLBACK_THRESHOLD_KEY, "4").toInt
conf.getConfString(WHOLE_STAGE_FALLBACK_THRESHOLD_KEY, "-1").toInt

// enable or disable columnar project and filter
val enableColumnarProjFilter: Boolean =
Expand Down

0 comments on commit 2e9998a

Please sign in to comment.