Home
last modified time | relevance | path

Searched refs:WO_LT (Results 1 – 3 of 3) sorted by relevance

/sqlite-3.40.0/src/
H A Dwhereexpr.c150 assert( op!=TK_LT || c==WO_LT ); in operatorMask()
525 if( (pOne->eOperator & (WO_EQ|WO_LT|WO_LE|WO_GT|WO_GE))==0 ) return; in whereCombineDisjuncts()
526 if( (pTwo->eOperator & (WO_EQ|WO_LT|WO_LE|WO_GT|WO_GE))==0 ) return; in whereCombineDisjuncts()
527 if( (eOp & (WO_EQ|WO_LT|WO_LE))!=eOp in whereCombineDisjuncts()
535 if( eOp & (WO_LT|WO_LE) ){ in whereCombineDisjuncts()
H A Dwhere.c1324 assert( WO_LT==SQLITE_INDEX_CONSTRAINT_LT ); in allocateIndexInfo()
1330 if( op & (WO_LT|WO_LE|WO_GT|WO_GE) in allocateIndexInfo()
1335 if( op==WO_LT ) pIdxCons[j].op = WO_LE; in allocateIndexInfo()
1866 assert( pUpper==0 || (pUpper->eOperator & (WO_LT|WO_LE))!=0 ); in whereRangeScanEst()
1882 if( sqlite3ExprVectorSize(pExpr)>n ) mask = (WO_LE|WO_LT); in whereRangeScanEst()
2819 opMask = WO_LT|WO_LE; in whereLoopAddBtreeIndex()
2822 opMask = WO_EQ|WO_IN|WO_GT|WO_GE|WO_LT|WO_LE|WO_ISNULL|WO_IS; in whereLoopAddBtreeIndex()
2824 if( pProbe->bUnordered ) opMask &= ~(WO_GT|WO_GE|WO_LT|WO_LE); in whereLoopAddBtreeIndex()
2991 assert( pTop->eOperator==WO_LT ); in whereLoopAddBtreeIndex()
2998 assert( eOp & (WO_LT|WO_LE) ); in whereLoopAddBtreeIndex()
[all …]
H A DwhereInt.h589 #define WO_LT (WO_EQ<<(TK_LT-TK_EQ)) macro