diff options
author | drh <drh@noemail.net> | 2010-03-10 21:42:07 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2010-03-10 21:42:07 +0000 |
commit | 63da089314cf0439d6467685d0c3d51c6205ad01 (patch) | |
tree | 8f58504503f460f83451c75f9f843dd49f8651cd /src/test_malloc.c | |
parent | 9f8da32662969650b7b6de88d5d72426acb14215 (diff) | |
download | sqlite-63da089314cf0439d6467685d0c3d51c6205ad01.tar.gz sqlite-63da089314cf0439d6467685d0c3d51c6205ad01.zip |
Add the SQLITE_DBSTATUS_CACHE_SIZE verb for sqlite3_db_status(). The
highwater mark does not yet work on this verb.
FossilOrigin-Name: 418c6d8113bc337556b0d47acfd6a7d865d1121f
Diffstat (limited to 'src/test_malloc.c')
-rw-r--r-- | src/test_malloc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test_malloc.c b/src/test_malloc.c index 5556cc1e6..d5f0a6df5 100644 --- a/src/test_malloc.c +++ b/src/test_malloc.c @@ -1287,6 +1287,7 @@ static int test_db_status( int op; } aOp[] = { { "SQLITE_DBSTATUS_LOOKASIDE_USED", SQLITE_DBSTATUS_LOOKASIDE_USED }, + { "SQLITE_DBSTATUS_CACHE_USED", SQLITE_DBSTATUS_CACHE_USED }, }; Tcl_Obj *pResult; if( objc!=4 ){ |