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

Add a rudimentary tokenizer and parser to FTS1 for parsing the module

arguments during initialization.   Recognized arguments include a
tokenizer selector and a list of virtual table columns. (CVS 3403)

FossilOrigin-Name: 227dc3feb537e6efd5b0c1d2dad40193db07d5aa
This commit is contained in:
drh
2006-09-11 00:34:22 +00:00
parent 4ca8aac2b4
commit e410296021
9 changed files with 285 additions and 57 deletions

View File

@@ -13,7 +13,7 @@
** is not included in the SQLite library. It is used for automated
** testing of the SQLite library.
**
** $Id: test_schema.c,v 1.10 2006/09/10 17:32:00 drh Exp $
** $Id: test_schema.c,v 1.11 2006/09/11 00:34:22 drh Exp $
*/
/* The code in this file defines a sqlite3 virtual-table module that
@@ -84,7 +84,7 @@ static int schemaDestroy(sqlite3_vtab *pVtab){
static int schemaCreate(
sqlite3 *db,
void *pAux,
int argc, char **argv,
int argc, const char *const*argv,
sqlite3_vtab **ppVtab,
char **pzErr
){