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

chengpan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kyuubi.git


The following commit(s) were added to refs/heads/master by this push:
     new fc04a3a7d2 [KYUUBI #7203] Bump Iceberg 1.10.0
fc04a3a7d2 is described below

commit fc04a3a7d2610d09b7db23391d563117c7cd74a9
Author: Cheng Pan <[email protected]>
AuthorDate: Wed Sep 17 11:15:45 2025 +0800

    [KYUUBI #7203] Bump Iceberg 1.10.0
    
    ### Why are the changes needed?
    
    Bump Iceberg 1.10.0, which brings support for Spark 4.0.
    
    Note: currently, we don't enable authz and lineage module tests on spark 4.0
    
    ### How was this patch tested?
    
    Pass GHA.
    
    ### Was this patch authored or co-authored using generative AI tooling?
    
    No.
    
    Closes #7203 from pan3793/iceberg-1.10.
    
    Closes #7203
    
    00e6bdd40 [Cheng Pan] fix
    1d83a21e6 [Cheng Pan] Bump Iceberg 1.10.0
    
    Authored-by: Cheng Pan <[email protected]>
    Signed-off-by: Cheng Pan <[email protected]>
---
 .../scala/org/apache/kyuubi/operation/IcebergMetadataTests.scala   | 7 +++----
 pom.xml                                                            | 6 ++----
 2 files changed, 5 insertions(+), 8 deletions(-)

diff --git 
a/kyuubi-common/src/test/scala/org/apache/kyuubi/operation/IcebergMetadataTests.scala
 
b/kyuubi-common/src/test/scala/org/apache/kyuubi/operation/IcebergMetadataTests.scala
index 787b229882..4a8c03050a 100644
--- 
a/kyuubi-common/src/test/scala/org/apache/kyuubi/operation/IcebergMetadataTests.scala
+++ 
b/kyuubi-common/src/test/scala/org/apache/kyuubi/operation/IcebergMetadataTests.scala
@@ -79,9 +79,8 @@ trait IcebergMetadataTests extends HiveJDBCTestHelper with 
IcebergSuiteMixin wit
       "`a.b`.c",
       "a.`b.c`",
       "`a.b.c`",
-      "`a.b``.c`",
       "db1.db2.db3",
-      "db4")
+      "db4") ++ (if (SPARK_ENGINE_RUNTIME_VERSION < "4.0") Seq("`a.b``.c`") 
else Nil)
 
     withDatabases(dbs: _*) { statement =>
       dbs.foreach(db => statement.execute(s"CREATE NAMESPACE IF NOT EXISTS 
$db"))
@@ -109,9 +108,9 @@ trait IcebergMetadataTests extends HiveJDBCTestHelper with 
IcebergSuiteMixin wit
       "`a.b`.c",
       "a.`b.c`",
       "`a.b.c`",
-      "`a.b``.c`",
       "db1.db2.db3",
-      "db4")
+      "db4") ++ (if (SPARK_ENGINE_RUNTIME_VERSION < "4.0") Seq("`a.b``.c`") 
else Nil)
+
     withDatabases(dbs: _*) { statement =>
       dbs.foreach(db => statement.execute(s"CREATE NAMESPACE IF NOT EXISTS 
$db"))
       val metaData = statement.getConnection.getMetaData
diff --git a/pom.xml b/pom.xml
index 5050ebbe6d..e73c378b0e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -160,7 +160,7 @@
         <httpcore.version>4.4.16</httpcore.version>
         <hudi.version>1.0.1</hudi.version>
         
<hudi.artifact>hudi-spark${spark.binary.version}-bundle_${scala.binary.version}</hudi.artifact>
-        <iceberg.version>1.8.0</iceberg.version>
+        <iceberg.version>1.10.0</iceberg.version>
         
<iceberg.artifact>iceberg-spark-runtime-${spark.binary.version}_${scala.binary.version}</iceberg.artifact>
         <jackson.version>2.15.4</jackson.version>
         <javax.servlet-api.version>4.0.1</javax.servlet-api.version>
@@ -2088,12 +2088,10 @@
                 
<delta.artifact>delta-spark_${scala.binary.version}</delta.artifact>
                 <!-- TODO: update once Hudi support Spark 4.0 -->
                 
<hudi.artifact>hudi-spark3.5-bundle_${scala.binary.version}</hudi.artifact>
-                <!-- TODO: update once Iceberg support Spark 4.0 -->
-                
<iceberg.artifact>iceberg-spark-runtime-3.5_${scala.binary.version}</iceberg.artifact>
                 <!-- TODO: update once Paimon support Spark 4.0.
                            paimon-spark-3.5 contains Scala 2.12 classes cause 
conflicts with Scala 2.13 -->
                 <paimon.artifact>paimon-common</paimon.artifact>
-                
<maven.plugin.scalatest.exclude.tags>org.scalatest.tags.Slow,org.apache.kyuubi.tags.IcebergTest,org.apache.kyuubi.tags.PaimonTest,org.apache.kyuubi.tags.HudiTest</maven.plugin.scalatest.exclude.tags>
+                
<maven.plugin.scalatest.exclude.tags>org.scalatest.tags.Slow,org.apache.kyuubi.tags.PaimonTest,org.apache.kyuubi.tags.HudiTest</maven.plugin.scalatest.exclude.tags>
                 
<spark.archive.name>spark-${spark.version}-bin-hadoop3.tgz</spark.archive.name>
             </properties>
         </profile>

Reply via email to