diff options
Diffstat (limited to 'src/test_config.c')
-rw-r--r-- | src/test_config.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test_config.c b/src/test_config.c index 40c021557..7f4689e51 100644 --- a/src/test_config.c +++ b/src/test_config.c @@ -16,7 +16,7 @@ ** The focus of this file is providing the TCL testing layer ** access to compile-time constants. ** -** $Id: test_config.c,v 1.3 2007/05/09 11:37:23 danielk1977 Exp $ +** $Id: test_config.c,v 1.4 2007/05/10 10:46:57 danielk1977 Exp $ */ #include "sqliteInt.h" #include "tcl.h" @@ -382,9 +382,9 @@ static void set_options(Tcl_Interp *interp){ (char*)&sqlite_max_sql_length, TCL_LINK_INT|TCL_LINK_READ_ONLY); } { - static int sqlite_max_expr_length = SQLITE_MAX_EXPR_LENGTH; - Tcl_LinkVar(interp, "SQLITE_MAX_EXPR_LENGTH", - (char*)&sqlite_max_expr_length, TCL_LINK_INT|TCL_LINK_READ_ONLY); + static int sqlite_max_expr_depth = SQLITE_MAX_EXPR_DEPTH; + Tcl_LinkVar(interp, "SQLITE_MAX_EXPR_DEPTH", + (char*)&sqlite_max_expr_depth, TCL_LINK_INT|TCL_LINK_READ_ONLY); } { static int sqlite_max_vdbe_op = SQLITE_MAX_VDBE_OP; |