hasTable method
Determines if the given table exists.
Implementation
@override
Future<bool> hasTable(String table, {String? schema}) async {
return snapshot.tables.any(
(t) => _equalsOwner(t.schema, schema) && _equals(t.name, table),
);
}
Determines if the given table exists.
@override
Future<bool> hasTable(String table, {String? schema}) async {
return snapshot.tables.any(
(t) => _equalsOwner(t.schema, schema) && _equals(t.name, table),
);
}