diff options
author | drh <drh@noemail.net> | 2015-07-23 20:44:49 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-07-23 20:44:49 +0000 |
commit | cfb8f8d6a9073040e90f0bf502f4b108d7917433 (patch) | |
tree | 32c7f662b2a3980fd111b6a9280b94ee311b412a /src/tclsqlite.c | |
parent | 7877d9afca7cf5627801d1b0b69790a7158d5699 (diff) | |
download | sqlite-cfb8f8d6a9073040e90f0bf502f4b108d7917433.tar.gz sqlite-cfb8f8d6a9073040e90f0bf502f4b108d7917433.zip |
Change the name of the OTA extension to RBU: Resumable Bulk Update.
FossilOrigin-Name: 017c5019e1ce042025d4f327e50ec50af49f9fa4
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 262863b31..f024317e9 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -3761,7 +3761,7 @@ static void init_all(Tcl_Interp *interp){ extern int SqliteSuperlock_Init(Tcl_Interp*); extern int SqlitetestSyscall_Init(Tcl_Interp*); 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 @@ -3805,7 +3805,7 @@ static void init_all(Tcl_Interp *interp){ SqliteSuperlock_Init(interp); SqlitetestSyscall_Init(interp); Fts5tcl_Init(interp); - SqliteOta_Init(interp); + SqliteRbu_Init(interp); #if defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4) Sqlitetestfts3_Init(interp); |