Skip to content

Commit 216dd66

Browse files
committed
[KYUUBI #1849] Bump Iceberg 0.13.0 and enable Iceberg test with Spark 3.2
### _Why are the changes needed?_ Bump Iceberg 0.13.0 and enable Iceberg test with Spark 3.2. ### _How was this patch tested?_ - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible - [ ] Add screenshots for manual tests if appropriate - [x] [Run test](https://kyuubi.apache.org/docs/latest/develop_tools/testing.html#running-tests) locally before make a pull request Closes #1849 from pan3793/iceberg-0.13.0. Closes #1849 39b156b [Cheng Pan] update comments a94eb4c [Cheng Pan] work around for namespace issue 1c3a423 [Cheng Pan] RC2 vote passed f266c0c [Cheng Pan] Iceberg 0.13.0 RC2 1f32af2 [Cheng Pan] Bump Iceberg 0.13.0 and enable Iceberg test with Spark 3.2 Authored-by: Cheng Pan <chengpan@apache.org> Signed-off-by: Cheng Pan <chengpan@apache.org>
1 parent 839c5c5 commit 216dd66

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

kyuubi-common/src/test/scala/org/apache/kyuubi/IcebergSuiteMixin.scala

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,7 @@ trait IcebergSuiteMixin extends DataLakeSuiteMixin {
4242
s"spark.sql.catalog.$catalog" -> "org.apache.iceberg.spark.SparkCatalog",
4343
s"spark.sql.catalog.$catalog.type" -> "hadoop",
4444
s"spark.sql.catalog.$catalog.warehouse" -> warehouse.toString,
45+
// https://github.com/apache/iceberg/pull/4024
46+
s"spark.sql.catalog.$catalog.default-namespace" -> "default",
4547
"spark.jars" -> extraJars)
4648
}

pom.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
<hive.version>2.3.9</hive.version>
114114
<hudi.version>0.10.0</hudi.version>
115115
<iceberg.name>iceberg-spark3-runtime</iceberg.name>
116-
<iceberg.version>0.12.1</iceberg.version>
116+
<iceberg.version>0.13.0</iceberg.version>
117117
<jackson.version>2.12.5</jackson.version>
118118
<jakarta.servlet-api.version>4.0.4</jakarta.servlet-api.version>
119119
<jakarta.xml-bind.version>2.3.2</jakarta.xml-bind.version>
@@ -1778,6 +1778,7 @@
17781778
<properties>
17791779
<spark.version>3.1.2</spark.version>
17801780
<delta.version>1.0.0</delta.version>
1781+
<iceberg.name>iceberg-spark-runtime-3.1_${scala.binary.version}</iceberg.name>
17811782
<maven.plugin.scalatest.exclude.tags>org.apache.kyuubi.tags.ExtendedSQLTest</maven.plugin.scalatest.exclude.tags>
17821783
</properties>
17831784
<modules>
@@ -1791,7 +1792,8 @@
17911792
<properties>
17921793
<spark.version>3.2.1</spark.version>
17931794
<delta.version>1.1.0</delta.version>
1794-
<maven.plugin.scalatest.exclude.tags>org.apache.kyuubi.tags.ExtendedSQLTest,org.apache.kyuubi.tags.IcebergTest,org.apache.kyuubi.tags.HudiTest</maven.plugin.scalatest.exclude.tags>
1795+
<iceberg.name>iceberg-spark-runtime-3.2_${scala.binary.version}</iceberg.name>
1796+
<maven.plugin.scalatest.exclude.tags>org.apache.kyuubi.tags.ExtendedSQLTest,org.apache.kyuubi.tags.HudiTest</maven.plugin.scalatest.exclude.tags>
17951797
</properties>
17961798
<modules>
17971799
<module>dev/kyuubi-extension-spark-common</module>

0 commit comments

Comments
 (0)