Lines Matching refs:FTS3_FULLTEXT_SEARCH
135870 ** FTS3_FULLTEXT_SEARCH. If so, then Fts3Cursor.eSearch - 2 is the index
135877 ** Fts3Cursor.eSearch will be set to FTS3_FULLTEXT_SEARCH+1. (+0 for a,
135880 ** then eSearch would be set to FTS3_FULLTEXT_SEARCH+4.
135884 #define FTS3_FULLTEXT_SEARCH 2 /* Full-text index search */
137467 pInfo->idxNum = FTS3_FULLTEXT_SEARCH + pCons->iColumn;
139024 ** If idxNum>=FTS3_FULLTEXT_SEARCH then use the full text index. The
139026 ** number idxNum-FTS3_FULLTEXT_SEARCH, 0 indexed. argv[0] is the right-hand
139052 assert( eSearch>=0 && eSearch<=(FTS3_FULLTEXT_SEARCH+p->nColumn) );
139082 int iCol = eSearch-FTS3_FULLTEXT_SEARCH;