From b82e7edae9c6f8b0c9f2f6745442b5663a55b51a Mon Sep 17 00:00:00 2001 From: danielk1977 Date: Wed, 11 Jan 2006 14:09:31 +0000 Subject: Fix bugs caused by assuming that shared-schemas are initialized. (CVS 2917) FossilOrigin-Name: 3970eb875d1830d35b3a70a7583a8ab6b238cad6 --- src/test1.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/test1.c') diff --git a/src/test1.c b/src/test1.c index 6e54789a9..d98640b4c 100644 --- a/src/test1.c +++ b/src/test1.c @@ -13,7 +13,7 @@ ** is not included in the SQLite library. It is used for automated ** testing of the SQLite library. ** -** $Id: test1.c,v 1.186 2006/01/09 16:12:05 danielk1977 Exp $ +** $Id: test1.c,v 1.187 2006/01/11 14:09:32 danielk1977 Exp $ */ #include "sqliteInt.h" #include "tcl.h" @@ -3523,5 +3523,9 @@ int Sqlitetest1_Init(Tcl_Interp *interp){ (char*)&sqlite3_fullsync_count, TCL_LINK_INT); #endif /* OS_UNIX */ set_options(interp); + + int sqlite3_shared_cache_report(void *, Tcl_Interp *, int, Tcl_Obj *CONST[]); + Tcl_CreateObjCommand(interp, "sqlite_shared_cache_report", + sqlite3_shared_cache_report, 0, 0); return TCL_OK; } -- cgit v1.2.3