Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JingsongLi committed Jul 29, 2024
1 parent 9f9acfc commit 1848a40
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,21 @@ public void dropPartition(Identifier identifier, Map<String, String> partitions)
wrapped.dropPartition(identifier, partitions);
}

@Override
public void repairCatalog() {
wrapped.repairCatalog();
}

@Override
public void repairDatabase(String databaseName) {
wrapped.repairDatabase(databaseName);
}

@Override
public void repairTable(Identifier identifier) throws TableNotExistException {
wrapped.repairTable(identifier);
}

@Override
public void close() throws Exception {
wrapped.close();
Expand Down

0 comments on commit 1848a40

Please sign in to comment.