Skip to content

Commit

Permalink
[Iceberg]Enable test cases for rename table on REST and NESSIE catalog
Browse files Browse the repository at this point in the history
  • Loading branch information
hantangwangd committed Oct 16, 2024
1 parent 5f3835e commit f1058cc
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,6 @@ protected boolean supportsNotNullColumns()
return false;
}

@Override
public void testRenameTable()
{
// Rename table are not supported by the connector
}

@Override
public void testUpdate()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,10 @@ protected boolean supportsViews()
{
return false;
}

@Override
public void testRenameTable()
{
// Rename table are not supported by hadoop catalog
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,10 @@ public TestIcebergHiveCatalogDistributedQueries()
{
super(HIVE, ImmutableMap.of("iceberg.hive-statistics-merge-strategy", Joiner.on(",").join(NUMBER_OF_DISTINCT_VALUES.name(), TOTAL_SIZE_IN_BYTES.name())));
}

@Override
public void testRenameTable()
{
// Rename table are not supported by hive catalog
}
}

0 comments on commit f1058cc

Please sign in to comment.