This is an automated email from the ASF dual-hosted git repository.
gurwls223 pushed a commit to branch branch-4.0
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/branch-4.0 by this push:
new 25fbe0f4abc4 [SPARK-52611][SQL] Fix SQLConf version for
excludeSubqueryRefsFromRemoveRedundantAliases…
25fbe0f4abc4 is described below
commit 25fbe0f4abc4ad213bb11840967cecb416966331
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 be2ae8c36170..436b81309d93 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
@@ -5330,7 +5330,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]