diff options
author | drh <drh@noemail.net> | 2015-07-23 21:59:58 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-07-23 21:59:58 +0000 |
commit | 244c8d7077ea25763bf2efce123da2f7d2d811cc (patch) | |
tree | 76ee15618f861fe989e7b16dfaca84bb121f35a3 /src/tclsqlite.c | |
parent | 38151adfe2f51c07ca50e9cbc6f44a9811097eb1 (diff) | |
parent | cfb8f8d6a9073040e90f0bf502f4b108d7917433 (diff) | |
download | sqlite-244c8d7077ea25763bf2efce123da2f7d2d811cc.tar.gz sqlite-244c8d7077ea25763bf2efce123da2f7d2d811cc.zip |
Merge all changes in the latest 3.8.11 beta into the sessions branch.
Changes include the rename of OTA to RBU, the WITHOUT-ROWID-OR-Skipscan fix,
and improvements to pcache1.
FossilOrigin-Name: 7f0ee77062d2fcb014942c7c62c163ccc801f21b
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r-- | src/tclsqlite.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c index 0f572bd01..608b3b2ba 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -3910,7 +3910,7 @@ static void init_all(Tcl_Interp *interp){ extern int TestSession_Init(Tcl_Interp*); #endif extern int Fts5tcl_Init(Tcl_Interp *); - extern int SqliteOta_Init(Tcl_Interp*); + extern int SqliteRbu_Init(Tcl_Interp*); #if defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4) extern int Sqlitetestfts3_Init(Tcl_Interp *interp); #endif @@ -3957,7 +3957,7 @@ static void init_all(Tcl_Interp *interp){ TestSession_Init(interp); #endif Fts5tcl_Init(interp); - SqliteOta_Init(interp); + SqliteRbu_Init(interp); #if defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4) Sqlitetestfts3_Init(interp); |