1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Refactor the FTS1 module so that its name is "fts1" instead of "fulltext",

so that all symbols with external linkage begin with "sqlite3Fts1", and
so that all filenames begin with "fts1". (CVS 3377)

FossilOrigin-Name: e1891f0dc58e5498a8845d8b9b5b092d7f9c7003
This commit is contained in:
drh
2006-08-31 15:07:14 +00:00
parent 2b85d5f46e
commit 5db455e7b5
9 changed files with 2295 additions and 11 deletions

View File

@@ -11,7 +11,7 @@
*************************************************************************
** A TCL Interface to SQLite
**
** $Id: tclsqlite.c,v 1.171 2006/08/29 12:04:19 drh Exp $
** $Id: tclsqlite.c,v 1.172 2006/08/31 15:07:15 drh Exp $
*/
#ifndef NO_TCL /* Omit this whole file if TCL is unavailable */
@@ -2075,8 +2075,8 @@ static int DbMain(void *cd, Tcl_Interp *interp, int objc,Tcl_Obj *const*objv){
#ifdef SQLITE_ENABLE_FTS1
{
extern int fulltext_init(sqlite3*);
fulltext_init(p->db);
extern int sqlite3Fts1Init(sqlite3*);
sqlite3Fts1Init(p->db);
}
#endif