You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(databases): implement dot-notation schema parsing in create_database_request
The --table flag doc comments claimed that `schema.table` entries would land
in the named schema, but the implementation was sending literal strings as
table names inside a single schema. This implements the promised behavior:
entries with a dot are split into (schema, table) and grouped accordingly,
bare names fall back to the --schema default. Adds a test covering the
multi-schema case.
Also removes an extra blank line between resolve_database and schema_name.
0 commit comments