aboutsummaryrefslogtreecommitdiff
path: root/src/tclsqlite.c
diff options
context:
space:
mode:
authordan <dan@noemail.net>2015-05-19 16:50:18 +0000
committerdan <dan@noemail.net>2015-05-19 16:50:18 +0000
commitc5aca218aabc95cf275ae0f39e5cbb3b60435a8e (patch)
tree0acee859b67d16f0ff09282d724531411d08b8e7 /src/tclsqlite.c
parenta48bae88195f68c5f82ae69c228cdf368e503751 (diff)
parent504ab3b6e50f80f6d10280135a6ad0cd46a521bc (diff)
downloadsqlite-c5aca218aabc95cf275ae0f39e5cbb3b60435a8e.tar.gz
sqlite-c5aca218aabc95cf275ae0f39e5cbb3b60435a8e.zip
Merge the ota-update branch with trunk.
FossilOrigin-Name: 08e2864ed7c2d36410a248459061dcbd5576e145
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 b44f5b8fa..24114e92f 100644
--- a/src/tclsqlite.c
+++ b/src/tclsqlite.c
@@ -3760,6 +3760,7 @@ static void init_all(Tcl_Interp *interp){
extern int Sqlitemultiplex_Init(Tcl_Interp*);
extern int SqliteSuperlock_Init(Tcl_Interp*);
extern int SqlitetestSyscall_Init(Tcl_Interp*);
+ extern int SqliteOta_Init(Tcl_Interp*);
#if defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4)
extern int Sqlitetestfts3_Init(Tcl_Interp *interp);
@@ -3803,6 +3804,7 @@ static void init_all(Tcl_Interp *interp){
Sqlitemultiplex_Init(interp);
SqliteSuperlock_Init(interp);
SqlitetestSyscall_Init(interp);
+ SqliteOta_Init(interp);
#if defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4)
Sqlitetestfts3_Init(interp);