davidm-db commented on code in PR #47403: URL: https://github.com/apache/spark/pull/47403#discussion_r1700093041
########## sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala: ########## @@ -3344,6 +3344,14 @@ object SQLConf { .version("2.3.0") .fallbackConf(org.apache.spark.internal.config.STRING_REDACTION_PATTERN) + val SQL_SCRIPTING_ENABLED = + buildConf("spark.sql.scripting.enabled") + .doc("SQL Scripting feature is under development and its use should be done under this" + + "feature flag.") + .version("4.0.0") + .booleanConf + .createWithDefault(Utils.isTesting) Review Comment: Did we talk about changing this to `false` by default? Why did we decide not to do it? -- 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. To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org