aboutsummaryrefslogtreecommitdiff
path: root/src/tclsqlite.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2013-01-25 02:10:06 +0000
committerdrh <drh@noemail.net>2013-01-25 02:10:06 +0000
commit3dbfbcf43eb771122a7c3293f433e76c064f169f (patch)
tree17344ca1040560dcfb3bfb797d9575d1e757f030 /src/tclsqlite.c
parente6dcfb85df09f22358e25f72d8411ed4b86f011c (diff)
parentbc46f02c5daf3fe2f7713e03eadb07799c1929d4 (diff)
downloadsqlite-3dbfbcf43eb771122a7c3293f433e76c064f169f.tar.gz
sqlite-3dbfbcf43eb771122a7c3293f433e76c064f169f.zip
Enhancements to the query planner to exploit transitive relationships in the
WHERE clause, and other minor changes to bring the sessions branch into alignment with the trunk. FossilOrigin-Name: 82d3d1ae824e1fbc7958657be79231590ec17ace
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r--src/tclsqlite.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c
index 070c540ec..de838ff38 100644
--- a/src/tclsqlite.c
+++ b/src/tclsqlite.c
@@ -3817,6 +3817,7 @@ static void init_all(Tcl_Interp *interp){
extern int Sqlitetestschema_Init(Tcl_Interp*);
extern int Sqlitetestsse_Init(Tcl_Interp*);
extern int Sqlitetesttclvar_Init(Tcl_Interp*);
+ extern int Sqlitetestfs_Init(Tcl_Interp*);
extern int SqlitetestThread_Init(Tcl_Interp*);
extern int SqlitetestOnefile_Init();
extern int SqlitetestOsinst_Init(Tcl_Interp*);
@@ -3864,6 +3865,7 @@ static void init_all(Tcl_Interp *interp){
Sqlitetest_mutex_Init(interp);
Sqlitetestschema_Init(interp);
Sqlitetesttclvar_Init(interp);
+ Sqlitetestfs_Init(interp);
SqlitetestThread_Init(interp);
SqlitetestOnefile_Init(interp);
SqlitetestOsinst_Init(interp);