Lines Matching refs:WO_EQ
368 if( (pTerm->eOperator & (WO_EQ|WO_IS))!=0 in whereScanNext()
513 op &= WO_EQ|WO_IS; in sqlite3WhereFindTerm()
633 if( 0==sqlite3WhereFindTerm(pWC, iBase, i, ~(Bitmask)0, WO_EQ, pIdx) ){ in isDistinctRedundant()
796 if( (pTerm->eOperator & (WO_EQ|WO_IS))==0 ) return 0; in termCanDriveIndex()
1308 op = WO_EQ; in allocateIndexInfo()
1323 assert( WO_EQ==SQLITE_INDEX_CONSTRAINT_EQ ); in allocateIndexInfo()
1328 assert( pTerm->eOperator&(WO_IN|WO_EQ|WO_LT|WO_LE|WO_GT|WO_GE|WO_AUX) ); in allocateIndexInfo()
2669 if( (pTerm->eOperator&(WO_EQ|WO_IS))!=0 in whereLoopOutputAdjust()
2822 opMask = WO_EQ|WO_IN|WO_GT|WO_GE|WO_LT|WO_LE|WO_ISNULL|WO_IS; in whereLoopAddBtreeIndex()
2956 }else if( eOp & (WO_EQ|WO_IS) ){ in whereLoopAddBtreeIndex()
2964 || (pProbe->nKeyCol==1 && pProbe->onError && eOp==WO_EQ) in whereLoopAddBtreeIndex()
3021 assert( eOp & (WO_ISNULL|WO_EQ|WO_IN|WO_IS) ); in whereLoopAddBtreeIndex()
3039 if( (eOp & (WO_EQ|WO_ISNULL|WO_IS))!=0 ){ in whereLoopAddBtreeIndex()
3040 testcase( eOp & WO_EQ ); in whereLoopAddBtreeIndex()
3601 if( pTerm->eOperator & (WO_EQ|WO_IS) ) nLookup -= 19; in whereLoopAddBtree()
4420 eqOpMask = WO_EQ | WO_IS | WO_ISNULL; in wherePathSatisfiesOrderBy()
4467 if( (pTerm->eOperator&(WO_EQ|WO_IS))!=0 && pOBExpr->iColumn>=0 ){ in wherePathSatisfiesOrderBy()
5206 pTerm = whereScanInit(&scan, pWC, iCur, -1, WO_EQ|WO_IS, 0); in whereShortCut()
5224 opMask = pIdx->uniqNotNull ? (WO_EQ|WO_IS) : WO_EQ; in whereShortCut()