Lines Matching defs:indexable
118335 Bitmask indexable; /* Bitmask of all indexable tables in the clause */
120132 ** allowed for an indexable WHERE clause term. The allowed operators are
120485 ** If all subterms are indexable by a single table T, then set
120488 ** WhereTerm.u.pOrInfo->indexable |= the cursor number for table T
120490 ** A subterm is "indexable" if it is of the form
120493 ** A subterm is also indexable if it is an AND of two or more
120494 ** subsubterms at least one of which is indexable. Indexable AND
120498 ** From another point of view, "indexable" means that the subterm could
120509 ** It might be the case that multiple tables are indexable. For example,
120510 ** (E) above is indexable on tables P, Q, and R.
120537 Bitmask indexable; /* Tables that are indexable, satisfying case 2 */
120559 indexable = ~(Bitmask)0;
120561 for(i=pOrWc->nTerm-1, pOrTerm=pOrWc->a; i>=0 && indexable; i--, pOrTerm++){
120589 indexable &= b;
120601 indexable &= b;
120614 pOrInfo->indexable = indexable;
120615 pTerm->eOperator = indexable==0 ? 0 : WO_OR;
120619 if( indexable && pOrWc->nTerm==2 ){
124351 && (pTerm->u.pOrInfo->indexable & pNew->maskSelf)!=0