Home | History | Annotate | Download | only in fts1

Lines Matching defs:pSelect

1064  * (*pSelect) is used to hold an SQLite statement used inside this function;
1065 pSelect to NULL before the first call.
1067 static int query_merge(fulltext_vtab *v, sqlite3_stmt **pSelect,
1079 rc = term_select_doclist(v, zTerm, -1, pSelect);
1086 sqlite3_column_blob(*pSelect, 0),
1087 sqlite3_column_bytes(*pSelect, 0));
1091 rc = sqlite3_step(*pSelect);
1198 sqlite3_stmt *pSelect = NULL;
1213 rc = query_merge(v, &pSelect, q.pTerm[i].zTerm, d, i - phrase_start, next);
1221 sqlite3_finalize(pSelect);