-
-
Notifications
You must be signed in to change notification settings - Fork 35
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
These are deliberately not supported here:
db-to-sqlite/db_to_sqlite/cli.py
Lines 71 to 78 in 045cbee
pks = inspector.get_pk_constraint(table)["constrained_columns"] | |
if len(pks) > 1: | |
raise click.ClickException( | |
"Multiple primary keys not currently supported" | |
) | |
pk = None | |
if pks: | |
pk = pks[0] |
I think that's because sqlite-utils
didn't support them - but it gained support for them in 1.5: https://sqlite-utils.readthedocs.io/en/stable/changelog.html#v1-5
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request