Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,15 @@ public void testDelete()
throw new SkipException("TODO");
}

@Test
@Override
public void testDeleteWithLike()
{
// TODO Support these test once kudu connector can create tables with default partitions
assertThatThrownBy(super::testDeleteWithLike)
.hasMessage("Table partitioning must be specified using setRangePartitionColumns or addHashPartitions");
}

@Test
@Override
public void testDeleteWithSemiJoin()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,14 @@ public void testRenameTableAcrossSchema()
.hasMessage("Creating schema in Kudu connector not allowed if schema emulation is disabled.");
}

@Test
@Override
public void testRenameTableToUnqualifiedPreservesSchema()
{
assertThatThrownBy(super::testRenameTableToUnqualifiedPreservesSchema)
.hasMessage("Creating schema in Kudu connector not allowed if schema emulation is disabled.");
}

@Test
@Override
public void testDropNonEmptySchemaWithTable()
Expand Down