diff options
author | dan <dan@noemail.net> | 2011-03-03 20:05:59 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2011-03-03 20:05:59 +0000 |
commit | 21e8d0126d3d89af3a979ebdac85a6837b5b5ef9 (patch) | |
tree | 5948b7dd36175b80065deea4fc9ff04ea3740bb2 /test/tclsqlite.test | |
parent | 46c47d4677a1eb17828ea121e0e97e90eee34639 (diff) | |
download | sqlite-21e8d0126d3d89af3a979ebdac85a6837b5b5ef9.tar.gz sqlite-21e8d0126d3d89af3a979ebdac85a6837b5b5ef9.zip |
Add the experimental sqlite3_transaction_hook() API.
FossilOrigin-Name: 093d8cd8e2f3a6af5d40cf810e396f4919eb5cef
Diffstat (limited to 'test/tclsqlite.test')
-rw-r--r-- | test/tclsqlite.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tclsqlite.test b/test/tclsqlite.test index c9d562beb..efc3e53ab 100644 --- a/test/tclsqlite.test +++ b/test/tclsqlite.test @@ -35,7 +35,7 @@ do_test tcl-1.1 { do_test tcl-1.2 { set v [catch {db bogus} msg] lappend v $msg -} {1 {bad option "bogus": must be authorizer, backup, busy, cache, changes, close, collate, collation_needed, commit_hook, complete, copy, enable_load_extension, errorcode, eval, exists, function, incrblob, interrupt, last_insert_rowid, nullvalue, onecolumn, preupdate, profile, progress, rekey, restore, rollback_hook, status, timeout, total_changes, trace, transaction, unlock_notify, update_hook, version, or wal_hook}} +} {1 {bad option "bogus": must be authorizer, backup, busy, cache, changes, close, collate, collation_needed, commit_hook, complete, copy, enable_load_extension, errorcode, eval, exists, function, incrblob, interrupt, last_insert_rowid, nullvalue, onecolumn, preupdate, profile, progress, rekey, restore, rollback_hook, status, timeout, total_changes, trace, transaction, transaction_hook, unlock_notify, update_hook, version, or wal_hook}} do_test tcl-1.2.1 { set v [catch {db cache bogus} msg] lappend v $msg |