diff options
author | dan <dan@noemail.net> | 2014-12-01 20:05:00 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2014-12-01 20:05:00 +0000 |
commit | 89a89560d60edc2b5e48c0679ab5c64e08a2ee66 (patch) | |
tree | 0cea0bf64266f632eeb467e82657940b08fa7175 /src/tclsqlite.c | |
parent | ca7fad3d2c38939a28e31462dfe2111fa29d0e64 (diff) | |
download | sqlite-89a89560d60edc2b5e48c0679ab5c64e08a2ee66.tar.gz sqlite-89a89560d60edc2b5e48c0679ab5c64e08a2ee66.zip |
Add code to parse a rank() function specification. And a tcl interface to add auxiliary functions to fts5.
FossilOrigin-Name: 9c1697a2aa1f601e6eb11704abe63a73c8105447
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r-- | src/tclsqlite.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c index 9b977e54a..92a107cd7 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -3698,6 +3698,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 Fts5tcl_Init(Tcl_Interp *); #if defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4) extern int Sqlitetestfts3_Init(Tcl_Interp *interp); @@ -3740,6 +3741,7 @@ static void init_all(Tcl_Interp *interp){ Sqlitemultiplex_Init(interp); SqliteSuperlock_Init(interp); SqlitetestSyscall_Init(interp); + Fts5tcl_Init(interp); #if defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4) Sqlitetestfts3_Init(interp); |