Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A DwhereInt.h598 #define WO_EQUIV 0x0800 /* Of the form A==B, both columns */ macro
H A Dwhereexpr.c1143 u16 opMask = (pTerm->prereqRight & prereqLeft)==0 ? WO_ALL : WO_EQUIV; in exprAnalyze()
1183 pTerm->eOperator |= WO_EQUIV; in exprAnalyze()
1184 eExtraOp = WO_EQUIV; in exprAnalyze()
H A Dwherecode.c709 || (pTerm->eOperator & WO_EQUIV)==0 in codeEqualityTerm()
2546 if( (pTerm->eOperator & WO_EQUIV)==0 ) continue; in sqlite3WhereCodeOneLoopStart()
H A Dwhere.c335 if( (pTerm->eOperator & WO_EQUIV)!=0 in whereScanNext()
1202 assert( IsPowerOfTwo(pTerm->eOperator & ~WO_EQUIV) ); in allocateIndexInfo()
1207 if( (pTerm->eOperator & ~(WO_EQUIV))==0 ) continue; in allocateIndexInfo()
2091 if( pTerm->eOperator & WO_EQUIV ) zType[1] = 'E'; in sqlite3WhereTermPrint()