mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-09-12 11:34:09 +02:00
Add more STRICT table support per https://github.com/simonw/sqlite-utils/issues/344#issuecomment-982014776.
Make table.transform() preserve STRICT mode.
This commit is contained in:
parent
9286c1ba43
commit
e4b9b582cd
9 changed files with 182 additions and 4 deletions
|
|
@ -293,6 +293,7 @@ See :ref:`cli_inserting_data`, :ref:`cli_insert_csv_tsv`, :ref:`cli_insert_unstr
|
|||
--replace Replace records if pk already exists
|
||||
--truncate Truncate table before inserting records, if table
|
||||
already exists
|
||||
--strict Apply STRICT mode to table
|
||||
-h, --help Show this message and exit.
|
||||
|
||||
|
||||
|
|
@ -345,6 +346,7 @@ See :ref:`cli_upsert`.
|
|||
--analyze Run ANALYZE at the end of this operation
|
||||
--load-extension TEXT Path to SQLite extension, with optional :entrypoint
|
||||
--silent Do not show progress bar
|
||||
--strict Apply STRICT mode to table
|
||||
-h, --help Show this message and exit.
|
||||
|
||||
|
||||
|
|
@ -920,6 +922,7 @@ See :ref:`cli_create_table`.
|
|||
--replace If table already exists, replace it
|
||||
--transform If table already exists, try to transform the schema
|
||||
--load-extension TEXT Path to SQLite extension, with optional :entrypoint
|
||||
--strict Apply STRICT mode to table
|
||||
-h, --help Show this message and exit.
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue