We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e19aa50 commit e798f9aCopy full SHA for e798f9a
1 file changed
common/src/main/scala/org/apache/comet/CometConf.scala
@@ -313,9 +313,10 @@ object CometConf extends ShimCometConf {
313
val COMET_EXEC_SORT_MERGE_JOIN_WITH_JOIN_FILTER_ENABLED: ConfigEntry[Boolean] =
314
conf("spark.comet.exec.sortMergeJoinWithJoinFilter.enabled")
315
.category(CATEGORY_ENABLE_EXEC)
316
- .doc("Experimental support for Sort Merge Join with filter")
+ .doc("Support for Sort Merge Join with filter. " +
317
+ "Deprecated: this config will be removed in a future release.")
318
.booleanConf
- .createWithDefault(false)
319
+ .createWithDefault(true)
320
321
val COMET_TRACING_ENABLED: ConfigEntry[Boolean] = conf("spark.comet.tracing.enabled")
322
.category(CATEGORY_TUNING)
0 commit comments