Home
last modified time | relevance | path

Searched refs:pOrInfo (Results 1 – 4 of 4) sorted by relevance

/sqlite-3.40.0/src/
H A Dwhereexpr.c652 WhereOrInfo *pOrInfo; /* Additional information associated with pTerm */ in exprAnalyzeOrTerm() local
663 pTerm->u.pOrInfo = pOrInfo = sqlite3DbMallocZero(db, sizeof(*pOrInfo)); in exprAnalyzeOrTerm()
664 if( pOrInfo==0 ) return; in exprAnalyzeOrTerm()
666 pOrWc = &pOrInfo->wc; in exprAnalyzeOrTerm()
735 pOrInfo->indexable = indexable; in exprAnalyzeOrTerm()
1689 whereOrInfoDelete(db, a->u.pOrInfo); in sqlite3WhereClauseClear()
H A DwhereInt.h282 WhereOrInfo *pOrInfo; /* Extra information if (eOperator & WO_OR)!=0 */ member
H A Dwhere.c2098 }else if( (pTerm->eOperator & WO_OR)!=0 && pTerm->u.pOrInfo!=0 ){ in sqlite3WhereTermPrint()
2100 pTerm->u.pOrInfo->indexable); in sqlite3WhereTermPrint()
4154 && (pTerm->u.pOrInfo->indexable & pNew->maskSelf)!=0 in whereLoopAddOr()
4156 WhereClause * const pOrWC = &pTerm->u.pOrInfo->wc; in whereLoopAddOr()
H A Dwherecode.c2147 pOrWc = &pTerm->u.pOrInfo->wc; in sqlite3WhereCodeOneLoopStart()