Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dwhere.c1204 testcase( pTerm->eOperator & WO_ISNULL ); in allocateIndexInfo()
1312 }else if( op & (WO_ISNULL|WO_IS) ){ in allocateIndexInfo()
1313 if( op==WO_ISNULL ){ in allocateIndexInfo()
2972 }else if( eOp & WO_ISNULL ){ 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()
3042 testcase( eOp & WO_ISNULL ); in whereLoopAddBtreeIndex()
3080 if( eOp & WO_ISNULL ){ in whereLoopAddBtreeIndex()
4420 eqOpMask = WO_EQ | WO_IS | WO_ISNULL; in wherePathSatisfiesOrderBy()
4528 if( eOp & (WO_ISNULL|WO_IS) ){ in wherePathSatisfiesOrderBy()
[all …]
H A DwhereInt.h595 #define WO_ISNULL 0x0100 macro
H A Dwhereexpr.c140 c = WO_ISNULL; in operatorMask()
147 assert( op!=TK_ISNULL || c==WO_ISNULL ); in operatorMask()
H A Dwherecode.c849 }else if( (pTerm->eOperator & WO_ISNULL)==0 ){ in codeAllEqualityTerms()