setCurrentSchema method
Sets the current schema/namespace for operations.
For PostgreSQL: Sets the search_path to the specified schema. For MySQL: Equivalent to USE database. For SQLite: No-op (single schema per file).
Implementation
@override
Future<void> setCurrentSchema(String name) async {
throw UnsupportedError(
'SnapshotSchemaDriver does not support schema management.',
);
}