dtenedor opened a new pull request, #53072:
URL: https://github.com/apache/spark/pull/53072

   ### What changes were proposed in this pull request?
   
   In https://github.com/apache/spark/pull/52983 we added the following new 
config, but mistakenly wrote its Spark version as 4.1.0. This PR fixes it to 
the intended value of 4.2.0 instead:
   
   ```
     val SINGLE_CHARACTER_PIPE_OPERATOR_ENABLED =
       buildConf("spark.sql.parser.singleCharacterPipeOperator.enabled")
       .doc("When true, the single character pipe token '|' can be used as an 
alternative to '|>' " +
         "for SQL pipe operators. When false, only '|>' is recognized as a pipe 
operator, and '|' " +
         "is only used for bitwise OR operations. This provides syntax 
compatibility with other " +
         "languages like Splunk SPL and Kusto that use '|' for pipe 
operations.")
       .version("4.1.0")
       .booleanConf
       .createWithDefault(true)
   
   ```
   
   ### Why are the changes needed?
   
   We can correctly identify Spark versions for configs.
   
   ### Does this PR introduce _any_ user-facing change?
   
   No
   
   ### How was this patch tested?
   
   N/A
   
   ### Was this patch authored or co-authored using generative AI tooling?
   
   No


-- 
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]

Reply via email to