diff options
author | drh <drh@noemail.net> | 2018-01-03 19:03:31 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2018-01-03 19:03:31 +0000 |
commit | 3ec8665e22a6fe5cf6a2b98c04de1d350d519c8c (patch) | |
tree | 089d1b1b514c40d264b89fc9289a3d66d7168889 /test/tclsqlite.test | |
parent | cb7d541d3ae005e24bb0d36bb138d84a3ca3d415 (diff) | |
download | sqlite-3ec8665e22a6fe5cf6a2b98c04de1d350d519c8c.tar.gz sqlite-3ec8665e22a6fe5cf6a2b98c04de1d350d519c8c.zip |
Replace sqlite3_memdb_config() with sqlite3_deserialize(). Remove the
"db memdb" command from the TCL interface, replacing it with "db serialize"
and "db deserialize".
FossilOrigin-Name: 2f6e9df9f0c5a9e5b1acb99cfa9486850cc1822d35b0989e779a7a10f3b1f1ac
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 ca53710ec..fb4be3dfc 100644 --- a/test/tclsqlite.test +++ b/test/tclsqlite.test @@ -34,7 +34,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, memdb, nullvalue, onecolumn, preupdate, profile, progress, rekey, restore, rollback_hook, status, timeout, total_changes, trace, trace_v2, 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, deserialize, enable_load_extension, errorcode, eval, exists, function, incrblob, interrupt, last_insert_rowid, nullvalue, onecolumn, preupdate, profile, progress, rekey, restore, rollback_hook, serialize, status, timeout, total_changes, trace, trace_v2, transaction, unlock_notify, update_hook, version, or wal_hook}} do_test tcl-1.2.1 { set v [catch {db cache bogus} msg] lappend v $msg |