This is an automated email from the ASF dual-hosted git repository.
wenchen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push:
new 6df8d57b30e7 [SPARK-54771][SQL] Remove ResolveUserSpecifiedColumns
rule from RuleIdCollection
6df8d57b30e7 is described below
commit 6df8d57b30e7fad18cb9e05309eed4e801128b62
Author: huangxiaoping <[email protected]>
AuthorDate: Wed Jan 7 19:24:39 2026 +0800
[SPARK-54771][SQL] Remove ResolveUserSpecifiedColumns rule from
RuleIdCollection
### What changes were proposed in this pull request?
Remove `ResolveUserSpecifiedColumns` rule from `RuleIdCollection`.
### Why are the changes needed?
Keep the maximum rule id value within a reasonable range. Because
`ResolveUserSpecifiedColumns` rule has been deleted at
[41262](https://github.com/apache/spark/pull/41262).
### Does this PR introduce _any_ user-facing change?
No
### How was this patch tested?
No need test
### Was this patch authored or co-authored using generative AI tooling?
No
Closes #53537 from huangxiaopingRD/SPARK-54771.
Authored-by: huangxiaoping <[email protected]>
Signed-off-by: Wenchen Fan <[email protected]>
---
.../scala/org/apache/spark/sql/catalyst/rules/RuleIdCollection.scala | 1 -
1 file changed, 1 deletion(-)
diff --git
a/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/rules/RuleIdCollection.scala
b/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/rules/RuleIdCollection.scala
index f094d7e93ec5..1e04d577abc8 100644
---
a/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/rules/RuleIdCollection.scala
+++
b/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/rules/RuleIdCollection.scala
@@ -73,7 +73,6 @@ object RuleIdCollection {
"org.apache.spark.sql.catalyst.analysis.Analyzer$ResolveTranspose" ::
"org.apache.spark.sql.catalyst.analysis.Analyzer$ResolveUnpivot" ::
"org.apache.spark.sql.catalyst.analysis.Analyzer$ResolveUpCast" ::
-
"org.apache.spark.sql.catalyst.analysis.Analyzer$ResolveUserSpecifiedColumns" ::
"org.apache.spark.sql.catalyst.analysis.Analyzer$ResolveWindowFrame" ::
"org.apache.spark.sql.catalyst.analysis.Analyzer$ResolveWindowOrder" ::
"org.apache.spark.sql.catalyst.analysis.Analyzer$WindowsSubstitution" ::
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]