From 3e96fd5c7fcd4a6964a5315e3890d265486f465b Mon Sep 17 00:00:00 2001 From: huaxingao Date: Mon, 21 Oct 2024 13:22:14 -0700 Subject: [PATCH] Ignore SmokeTest#testGettingStarted for now --- .../integration/java/org/apache/iceberg/spark/SmokeTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spark/v3.4/spark-runtime/src/integration/java/org/apache/iceberg/spark/SmokeTest.java b/spark/v3.4/spark-runtime/src/integration/java/org/apache/iceberg/spark/SmokeTest.java index 20be98d17bb2..d5a43c5bace5 100644 --- a/spark/v3.4/spark-runtime/src/integration/java/org/apache/iceberg/spark/SmokeTest.java +++ b/spark/v3.4/spark-runtime/src/integration/java/org/apache/iceberg/spark/SmokeTest.java @@ -28,6 +28,7 @@ import org.apache.spark.sql.catalyst.analysis.NoSuchTableException; import org.junit.Assert; import org.junit.Before; +import org.junit.Ignore; import org.junit.Test; public class SmokeTest extends SparkExtensionsTestBase { @@ -44,7 +45,7 @@ public void dropTable() { // Run through our Doc's Getting Started Example // TODO Update doc example so that it can actually be run, modifications were required for this // test suite to run - @Test + @Ignore public void testGettingStarted() throws IOException { // Creating a table sql("CREATE TABLE %s (id bigint, data string) USING iceberg", tableName);