Skip to content

Commit 8476f56

Browse files
committed
[SPARK-54616][SQL][4.1] Mark SupportsPushDownVariants as Experimental
### What changes were proposed in this pull request? This PR aims to mark `SupportsPushDownVariants` as `Experimental` instead of `Evolving` in Apache Spark 4.1.x. ### Why are the changes needed? During Apache Spark 4.1.0 RC2, it turns out that this new `Variant` improvement feature still needs more time to stabilize. - #52522 - #52578 - #53276 - [[VOTE] Release Spark 4.1.0 (RC2)](https://lists.apache.org/thread/og4dn0g7r92qj22fdsmqoqs518k324q5) We had better mark this interface itself as `Experimental` in Apache Spark 4.1.0 while keeping it `Evolving` in `master` branch. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Manual review. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #53354 from dongjoon-hyun/SPARK-54616. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent 16a3f6c commit 8476f56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sql/catalyst/src/main/java/org/apache/spark/sql/connector/read/SupportsPushDownVariants.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
package org.apache.spark.sql.connector.read;
1919

20-
import org.apache.spark.annotation.Evolving;
20+
import org.apache.spark.annotation.Experimental;
2121

2222
/**
2323
* A mix-in interface for {@link Scan}. Data sources can implement this interface to
@@ -39,7 +39,7 @@
3939
*
4040
* @since 4.1.0
4141
*/
42-
@Evolving
42+
@Experimental
4343
public interface SupportsPushDownVariants extends Scan {
4444

4545
/**

0 commit comments

Comments
 (0)