diff options
author | drh <drh@noemail.net> | 2006-01-06 03:29:56 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2006-01-06 03:29:56 +0000 |
commit | e19d594067ca72fe924b4cb10ff4e664b383c7f5 (patch) | |
tree | 0c47052e3668fd2290aeb6edef8147178a63f6e0 /src/tclsqlite.c | |
parent | 47ded16fdc32aade452ebfb9381800e794758150 (diff) | |
download | sqlite-e19d594067ca72fe924b4cb10ff4e664b383c7f5.tar.gz sqlite-e19d594067ca72fe924b4cb10ff4e664b383c7f5.zip |
Enable async testing. Modify the OS layer interface. Add the sqlite3_aux.h include file. Add tests for boolean value representation in file format 4. (CVS 2866)
FossilOrigin-Name: b8332aa8b83142898779972b3dff13cbe3c78623
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r-- | src/tclsqlite.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c index c469f75eb..53a195fa5 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -11,7 +11,7 @@ ************************************************************************* ** A TCL Interface to SQLite ** -** $Id: tclsqlite.c,v 1.145 2006/01/05 15:50:07 drh Exp $ +** $Id: tclsqlite.c,v 1.146 2006/01/06 03:29:58 drh Exp $ */ #ifndef NO_TCL /* Omit this whole file if TCL is unavailable */ @@ -2161,7 +2161,7 @@ int TCLSH_MAIN(int argc, char **argv){ Sqlitetest4_Init(interp); Sqlitetest5_Init(interp); Sqlitetest6_Init(interp); - /* Sqlitetestasync_Init(interp); */ + Sqlitetestasync_Init(interp); Md5_Init(interp); #ifdef SQLITE_SSE Sqlitetestsse_Init(interp); |