Skip to content

Commit

Permalink
Disable testDeleteRowsConcurrently for Iceberg Polaris
Browse files Browse the repository at this point in the history
  • Loading branch information
pajaks authored and ebyhr committed Oct 28, 2024
1 parent 466b30c commit f45d574
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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");
}
}

0 comments on commit f45d574

Please sign in to comment.