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 bd0be0f75fe91..7fbf2797dc93d 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 @@ -6593,20 +6593,20 @@ object SQLConf { .booleanConf .createWithDefault(true) - val MERGE_SUBPLANS_SYMMETRIC_FILTER_PROPAGATION_ENABLED = - buildConf("spark.sql.optimizer.mergeSubplans.symmetricFilterPropagation.enabled") - .doc("When set to true, two non-grouping aggregate subplans that both have filter " + - "conditions (but with different predicates) can be merged into a single scan using " + - "FILTER (WHERE ...) clauses on each aggregate expression. " + - "Merging two filtered scans broadens the combined filter to OR(f1, f2), which may " + - "reduce IO pruning (e.g. partition or file skipping) compared to the individual " + - "filters. Disabled by default; enable once the behaviour has been validated in your " + - "workload, particularly on heavily partitioned or file-pruned tables. " + - s"Has no effect when ${MERGE_SUBPLANS_FILTER_PROPAGATION_ENABLED.key} is false.") - .version("4.2.0") - .withBindingPolicy(ConfigBindingPolicy.SESSION) - .booleanConf - .createWithDefault(false) + val MERGE_SUBPLANS_SYMMETRIC_FILTER_PROPAGATION_ENABLED = buildConf( + "spark.sql.optimizer.mergeSubplans.filterPropagation.symmetricFilterPropagation.enabled") + .doc("When set to true, two non-grouping aggregate subplans that both have filter " + + "conditions (but with different predicates) can be merged into a single scan using " + + "FILTER (WHERE ...) clauses on each aggregate expression. " + + "Merging two filtered scans broadens the combined filter to OR(f1, f2), which may " + + "reduce IO pruning (e.g. partition or file skipping) compared to the individual " + + "filters. Disabled by default; enable once the behaviour has been validated in your " + + "workload, particularly on heavily partitioned or file-pruned tables. " + + s"Has no effect when ${MERGE_SUBPLANS_FILTER_PROPAGATION_ENABLED.key} is false.") + .version("4.2.0") + .withBindingPolicy(ConfigBindingPolicy.SESSION) + .booleanConf + .createWithDefault(false) val ERROR_MESSAGE_FORMAT = buildConf("spark.sql.error.messageFormat") .doc("When PRETTY, the error message consists of textual representation of error class, " +