Skip to content
Merged
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 @@ -189,6 +189,12 @@ public void addNewColumnToTable(
namespace, table, columnName, columnType, encrypted);
}

@Override
public void importTable(String namespace, String table, Map<String, String> options)
throws ExecutionException {
distributedTransactionAdmin.importTable(namespace, table, options);
}

@Override
public void importTable(
String namespace,
Expand Down
Loading