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"); + } }