dtenedor commented on code in PR #48047:
URL: https://github.com/apache/spark/pull/48047#discussion_r1752928254
##########
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:
Yes. I plan to implement the different SQL clauses and then enable to true
by default. It will be fully backwards-compatible with existing queries.
--
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]