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

dongjoon 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 4baf94d83f51 [SPARK-54618][SQL] Promote `LocalScan` to `Stable`
4baf94d83f51 is described below

commit 4baf94d83f510c5a095a4383e7f53e4bd488fedb
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Fri Dec 5 15:31:11 2025 -0800

    [SPARK-54618][SQL] Promote `LocalScan` to `Stable`
    
    ### What changes were proposed in this pull request?
    
    This PR aims to promote `LocalScan` to `Stable` at Apache Spark 4.2.0.
    
    ### Why are the changes needed?
    
    - Since SPARK-35535 introduced `LocalScan` at Apache Spark 3.2.0, this 
interface has been serving stably over 4 years without any change.
      - #32678
      - #33826
    
    - We had better define this `Stable` at Apache Spark 4.2.0 because this is 
no longer experimental.
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    Pass the CIs and manual review.
    
    ### Was this patch authored or co-authored using generative AI tooling?
    
    No.
    
    Closes #53356 from dongjoon-hyun/SPARK-54618.
    
    Authored-by: Dongjoon Hyun <[email protected]>
    Signed-off-by: Dongjoon Hyun <[email protected]>
---
 .../src/main/java/org/apache/spark/sql/connector/read/LocalScan.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/sql/catalyst/src/main/java/org/apache/spark/sql/connector/read/LocalScan.java 
b/sql/catalyst/src/main/java/org/apache/spark/sql/connector/read/LocalScan.java
index 4573cf5bc2a2..6d41296f434e 100644
--- 
a/sql/catalyst/src/main/java/org/apache/spark/sql/connector/read/LocalScan.java
+++ 
b/sql/catalyst/src/main/java/org/apache/spark/sql/connector/read/LocalScan.java
@@ -17,7 +17,7 @@
 
 package org.apache.spark.sql.connector.read;
 
-import org.apache.spark.annotation.Experimental;
+import org.apache.spark.annotation.Stable;
 import org.apache.spark.sql.catalyst.InternalRow;
 
 /**
@@ -25,7 +25,7 @@ import org.apache.spark.sql.catalyst.InternalRow;
  *
  * @since 3.2.0
  */
-@Experimental
+@Stable
 public interface LocalScan extends Scan {
   InternalRow[] rows();
 }


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

Reply via email to