From f45d5741c305905cad6187402fa7758b6eada47b Mon Sep 17 00:00:00 2001 From: Slawomir Pajak Date: Mon, 28 Oct 2024 12:53:16 +0100 Subject: [PATCH] Disable testDeleteRowsConcurrently for Iceberg Polaris --- .../TestIcebergPolarisCatalogConnectorSmokeTest.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/plugin/trino-iceberg/src/test/java/io/trino/plugin/iceberg/catalog/rest/TestIcebergPolarisCatalogConnectorSmokeTest.java b/plugin/trino-iceberg/src/test/java/io/trino/plugin/iceberg/catalog/rest/TestIcebergPolarisCatalogConnectorSmokeTest.java index e8eb76845028..97a5a939dec8 100644 --- a/plugin/trino-iceberg/src/test/java/io/trino/plugin/iceberg/catalog/rest/TestIcebergPolarisCatalogConnectorSmokeTest.java +++ b/plugin/trino-iceberg/src/test/java/io/trino/plugin/iceberg/catalog/rest/TestIcebergPolarisCatalogConnectorSmokeTest.java @@ -43,6 +43,7 @@ import static java.lang.String.format; import static org.apache.iceberg.FileFormat.PARQUET; import static org.assertj.core.api.Assertions.assertThatThrownBy; +import static org.junit.jupiter.api.Assumptions.abort; import static org.junit.jupiter.api.TestInstance.Lifecycle.PER_CLASS; @Isolated // TODO remove @@ -226,4 +227,12 @@ public void testDropTableWithNonExistentTableLocation() assertThatThrownBy(super::testDropTableWithNonExistentTableLocation) .hasMessageMatching(".* Table '.*' does not exist"); } + + @Test + @Override + public void testDeleteRowsConcurrently() + { + //TODO: Fix https://github.com/trinodb/trino/issues/23941 + abort("Skipped for now due to #23941"); + } }