mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-09-18 06:24:23 +02:00
Documentation for tracer mechanism
This commit is contained in:
parent
31bea2ac61
commit
f12251092c
12 changed files with 68 additions and 22 deletions
|
|
@ -11,6 +11,7 @@ def test_tracer():
|
|||
db["dogs"].enable_fts(["name"])
|
||||
db["dogs"].search("Cleopaws")
|
||||
assert collected == [
|
||||
("PRAGMA recursive_triggers=on;", None),
|
||||
("select name from sqlite_master where type = 'view'", None),
|
||||
("select name from sqlite_master where type = 'table'", None),
|
||||
("CREATE TABLE [dogs] (\n [name] TEXT\n);\n ", None),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue