beliefer commented on a change in pull request #27691: [SPARK-30841][SQL][DOC]
Add version information to the configuration of SQL
URL: https://github.com/apache/spark/pull/27691#discussion_r383742075
##########
File path:
sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala
##########
@@ -183,19 +184,22 @@ object SQLConf {
"specified by their rule names and separated by comma. It is not
guaranteed that all the " +
"rules in this configuration will eventually be excluded, as some rules
are necessary " +
"for correctness. The optimizer will log the rules that have indeed been
excluded.")
+ .version("2.4.0")
.stringConf
.createOptional
val OPTIMIZER_MAX_ITERATIONS = buildConf("spark.sql.optimizer.maxIterations")
.internal()
.doc("The max number of iterations the optimizer runs.")
+ .version("2.0.0")
.intConf
.createWithDefault(100)
val OPTIMIZER_INSET_CONVERSION_THRESHOLD =
buildConf("spark.sql.optimizer.inSetConversionThreshold")
.internal()
.doc("The threshold of set size for InSet conversion.")
+ .version("2.0.0")
Review comment:
, commit ID:
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]