mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-31 14:34:12 +02:00
Type signatures for .create_table() and .create_table_sql() and .create() and Table.__init__
Closes #314
This commit is contained in:
parent
282e81362a
commit
c79737bb4f
2 changed files with 62 additions and 43 deletions
|
|
@ -13,6 +13,7 @@ def test_tracer():
|
|||
("PRAGMA recursive_triggers=on;", None),
|
||||
("select name from sqlite_master where type = 'view'", None),
|
||||
("select name from sqlite_master where type = 'table'", None),
|
||||
("select name from sqlite_master where type = 'view'", None),
|
||||
("CREATE TABLE [dogs] (\n [name] TEXT\n);\n ", None),
|
||||
("select name from sqlite_master where type = 'view'", None),
|
||||
("INSERT INTO [dogs] ([name]) VALUES (?);", ["Cleopaws"]),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue