cloud-fan commented on code in PR #48047:
URL: https://github.com/apache/spark/pull/48047#discussion_r1758097337
##########
sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala:
##########
@@ -4989,6 +4989,15 @@ object SQLConf {
.stringConf
.createWithDefault("versionAsOf")
+ val OPERATOR_PIPE_SYNTAX_ENABLED =
+ buildConf("spark.sql.operatorPipeSyntaxEnabled")
+ .doc("If true, enable operator pipe syntax for Apache Spark SQL. This
uses the operator " +
+ "pipe marker |> to indicate separation between clauses of SQL in a
manner that describes " +
+ "the sequence of steps that the query performs in a composable
fashion.")
+ .version("4.0.0")
+ .booleanConf
+ .createWithDefault(false)
Review Comment:
should the default value be `Utils.isTesting`? This feature is opt-in and it
won't break any tests.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]