diff options
Diffstat (limited to 'src/test1.c')
-rw-r--r-- | src/test1.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/test1.c b/src/test1.c index 73159910f..dd7e06cd9 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.144 2005/06/12 22:01:43 drh Exp $ +** $Id: test1.c,v 1.145 2005/06/25 18:42:14 drh Exp $ */ #include "sqliteInt.h" #include "tcl.h" @@ -2794,6 +2794,12 @@ static void set_options(Tcl_Interp *interp){ Tcl_SetVar2(interp, "sqlite_options", "bloblit", "1", TCL_GLOBAL_ONLY); #endif +#ifdef SQLITE_OMIT_CAST + Tcl_SetVar2(interp, "sqlite_options", "cast", "0", TCL_GLOBAL_ONLY); +#else + Tcl_SetVar2(interp, "sqlite_options", "cast", "1", TCL_GLOBAL_ONLY); +#endif + #ifdef SQLITE_OMIT_COMPLETE Tcl_SetVar2(interp, "sqlite_options", "complete", "0", TCL_GLOBAL_ONLY); #else |