aboutsummaryrefslogtreecommitdiff
path: root/src/tclsqlite.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2015-05-19 22:42:23 +0000
committerdrh <drh@noemail.net>2015-05-19 22:42:23 +0000
commitadf3bf5811b73e6fe6ad62ef361d607091ecbfa3 (patch)
tree85e4746321556076115091adba5061a8b88d42e2 /src/tclsqlite.c
parent5f9a57fc49873318e74ed68a642b199a5da7d6cf (diff)
parent856d446efe88c895d0f2c8dec5727258cf8a034d (diff)
downloadsqlite-adf3bf5811b73e6fe6ad62ef361d607091ecbfa3.tar.gz
sqlite-adf3bf5811b73e6fe6ad62ef361d607091ecbfa3.zip
Merge recent trunk changes, include the R-Tree enhancement that allows
8-byte BLOB arguments to geometry functions, and the fix for the TEXT affinity problem that could cause corrupt indexes. FossilOrigin-Name: 0a0de8b72ca24f287f9c84766a14e12ea4564b59
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 c139a2882..e5c4ef6fd 100644
--- a/src/tclsqlite.c
+++ b/src/tclsqlite.c
@@ -3909,6 +3909,7 @@ static void init_all(Tcl_Interp *interp){
#if defined(SQLITE_ENABLE_SESSION) && defined(SQLITE_ENABLE_PREUPDATE_HOOK)
extern int TestSession_Init(Tcl_Interp*);
#endif
+ extern int SqliteOta_Init(Tcl_Interp*);
#if defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4)
extern int Sqlitetestfts3_Init(Tcl_Interp *interp);
@@ -3955,6 +3956,7 @@ static void init_all(Tcl_Interp *interp){
#if defined(SQLITE_ENABLE_SESSION) && defined(SQLITE_ENABLE_PREUPDATE_HOOK)
TestSession_Init(interp);
#endif
+ SqliteOta_Init(interp);
#if defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4)
Sqlitetestfts3_Init(interp);