Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dwhere.c513 op &= WO_EQ|WO_IS; in sqlite3WhereFindTerm()
517 testcase( p->eOperator & WO_IS ); in sqlite3WhereFindTerm()
1205 testcase( pTerm->eOperator & WO_IS ); in allocateIndexInfo()
1312 }else if( op & (WO_ISNULL|WO_IS) ){ in allocateIndexInfo()
2956 }else if( eOp & (WO_EQ|WO_IS) ){ in whereLoopAddBtreeIndex()
3041 testcase( eOp & WO_IS ); in whereLoopAddBtreeIndex()
4420 eqOpMask = WO_EQ | WO_IS | WO_ISNULL; in wherePathSatisfiesOrderBy()
4528 if( eOp & (WO_ISNULL|WO_IS) ){ in wherePathSatisfiesOrderBy()
4530 testcase( eOp & WO_IS ); in wherePathSatisfiesOrderBy()
5209 testcase( pTerm->eOperator & WO_IS ); in whereShortCut()
[all …]
H A DwhereInt.h594 #define WO_IS 0x0080 macro
H A Dwherecode.c2545 if( (pTerm->eOperator & (WO_EQ|WO_IS))==0 ) continue; in sqlite3WhereCodeOneLoopStart()
2560 WO_EQ|WO_IN|WO_IS, 0); in sqlite3WhereCodeOneLoopStart()
2570 testcase( pAlt->eOperator & WO_IS ); in sqlite3WhereCodeOneLoopStart()
H A Dwhereexpr.c142 c = WO_IS; in operatorMask()
154 assert( op!=TK_IS || c==WO_IS ); in operatorMask()