Home
last modified time | relevance | path

Searched defs:fulltext_vtab (Results 1 – 3 of 3) sorted by relevance

/sqlite-3.40.0/ext/fts1/
H A Dfulltext.c562 typedef struct fulltext_vtab { struct
572 } fulltext_vtab; argument
H A Dfts1.c946 typedef struct fulltext_vtab fulltext_vtab; typedef
1084 struct fulltext_vtab { struct
1085 sqlite3_vtab base; /* Base class used by SQLite core */
1086 sqlite3 *db; /* The database connection */
1087 const char *zDb; /* logical database name */
1088 const char *zName; /* virtual table name */
1089 int nColumn; /* number of columns in virtual table */
1090 char **azColumn; /* column names. malloced */
1091 char **azContentColumn; /* column names in content table; malloced */
1092 sqlite3_tokenizer *pTokenizer; /* tokenizer for inserts and queries */
[all …]
/sqlite-3.40.0/ext/fts2/
H A Dfts2.c1688 typedef struct fulltext_vtab fulltext_vtab; typedef
1842 struct fulltext_vtab { struct
1843 sqlite3_vtab base; /* Base class used by SQLite core */
1844 sqlite3 *db; /* The database connection */
1845 const char *zDb; /* logical database name */
1846 const char *zName; /* virtual table name */
1848 char **azColumn; /* column names. malloced */
1850 sqlite3_tokenizer *pTokenizer; /* tokenizer for inserts and queries */
1855 sqlite3_stmt *pFulltextStatements[MAX_STMT];
1860 sqlite3_stmt *pLeafSelectStmts[MERGE_COUNT];
[all …]