1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-10-22 22:13:04 +03:00

Fix for #2281. This was a problem with the test-case only. (CVS 3795)

FossilOrigin-Name: c036db6251ca4671fc3388a4f37955c18adeca1d
This commit is contained in:
danielk1977
2007-04-02 12:29:01 +00:00
parent ead8e3f45e
commit cd1aa9000f
4 changed files with 20 additions and 12 deletions

View File

@@ -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.232 2007/03/31 15:02:49 drh Exp $
** $Id: test1.c,v 1.233 2007/04/02 12:29:01 danielk1977 Exp $
*/
#include "sqliteInt.h"
#include "tcl.h"
@@ -4073,6 +4073,13 @@ static void set_options(Tcl_Interp *interp){
#else
Tcl_SetVar2(interp, "sqlite_options", "vtab", "1", TCL_GLOBAL_ONLY);
#endif
#ifdef SQLITE_DEFAULT_FILE_FORMAT
Tcl_ObjSetVar2(interp,
Tcl_NewStringObj("sqlite_default_file_format", -1), 0,
Tcl_NewIntObj(SQLITE_DEFAULT_FILE_FORMAT), TCL_GLOBAL_ONLY
);
#endif
}
/*