This is an automated email from the ASF dual-hosted git repository.

gurwls223 pushed a commit to branch branch-3.5
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/branch-3.5 by this push:
     new 57da4850b10a [SPARK-52611][SQL] Fix SQLConf version for 
excludeSubqueryRefsFromRemoveRedundantAliases…
57da4850b10a is described below

commit 57da4850b10a6fe6e7499cfb7f0f2658d01edcad
Author: Dongpu Li <[email protected]>
AuthorDate: Mon Jun 30 16:48:59 2025 +0900

    [SPARK-52611][SQL] Fix SQLConf version for 
excludeSubqueryRefsFromRemoveRedundantAliases…
    
    … configuration
    
    ### What changes were proposed in this pull request?
    
    This PR fixes the added version of 
`spark.sql.optimizer.excludeSubqueryRefsFromRemoveRedundantAliases.enabled` to
    3.5.1 (also in [SPARK-52611])
    ### Why are the changes needed?
    
    To show the correct version added.
    
    ### Does this PR introduce _any_ user-facing change?
    
    Yes but only in the unreleased branches. It will change the version shown 
in SQL documentation.
    
    ### How was this patch tested?
    
    Not tested. Jenkins will test it out.
    
    ### Was this patch authored or co-authored using generative AI tooling?
    
    No
    
    Closes #51318 from atongpu/SPARK-52611.
    
    Authored-by: Dongpu Li <[email protected]>
    Signed-off-by: Hyukjin Kwon <[email protected]>
    (cherry picked from commit 9fcacba60c5acbf57319db1f1851355eee18ca89)
    Signed-off-by: Hyukjin Kwon <[email protected]>
---
 sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala 
b/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala
index 8186d5fa00c3..ca6938588ddb 100644
--- a/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala
+++ b/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala
@@ -4398,7 +4398,7 @@ object SQLConf {
       .internal()
       .doc("When true, exclude the references from the subquery expressions 
(in, exists, etc.) " +
         s"while removing redundant aliases.")
-      .version("4.0.0")
+      .version("3.5.1")
       .booleanConf
       .createWithDefault(true)
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to