Home | History | Annotate | Download | only in fts1

Lines Matching refs:QUERY_FULLTEXT

1024   QUERY_FULLTEXT   /* QUERY_FULLTEXT + [i] is a full-text search for column i*/
1113 DocListReader result; /* used when iCursorType == QUERY_FULLTEXT */
2102 pInfo->idxNum = QUERY_FULLTEXT + pConstraint->iColumn;
2103 TRACE(("FTS1 QUERY_FULLTEXT %d\n", pConstraint->iColumn));
2294 iColumn = p->iCursorType - QUERY_FULLTEXT;
2544 if( c->iCursorType < QUERY_FULLTEXT ){
2867 ** If idxNum>=QUERY_FULLTEXT then use the full text index. The
2869 ** number idxNum-QUERY_FULLTEXT, 0 indexed. argv[0] is the right-hand
2910 assert( idxNum<=QUERY_FULLTEXT+v->nColumn);
2913 rc = fulltextQuery(v, idxNum-QUERY_FULLTEXT, zQuery, -1, &pResult, &c->q);