}
@Override
public TableCreationBuilder createTable(Schema schema, String name) throws IllegalArgumentException,
IllegalStateException {
TableCreationBuilder tabelCreationBuilder = _updateCallback.createTable(schema, name);
if (_tableCreationInterceptors.isEmpty()) {
return tabelCreationBuilder;
}
return new InterceptableTableCreationBuilder(tabelCreationBuilder, _tableCreationInterceptors);
}