Home
last modified time | relevance | path

Searched refs:TERM_VNULL (Results 1 – 5 of 5) sorted by relevance

/sqlite-3.40.0/test/
H A DwhereF.test284 # in the output when there is a TERM_VNULL entry in the WhereClause array.
285 # And TERM_VNULL entries are only generated when compiling with
288 # than TERM_VNULL, participation is harmless, but it does consume a few
/sqlite-3.40.0/src/
H A Dwherecode.c1600 assert( (pStart->wtFlags & TERM_VNULL)==0 ); in sqlite3WhereCodeOneLoopStart()
1638 assert( (pEnd->wtFlags & TERM_VNULL)==0 ); in sqlite3WhereCodeOneLoopStart()
1780 assert( pRangeEnd==0 || (pRangeEnd->wtFlags & TERM_VNULL)==0 ); in sqlite3WhereCodeOneLoopStart()
1846 if( (pRangeStart->wtFlags & TERM_VNULL)==0 in sqlite3WhereCodeOneLoopStart()
1957 if( (pRangeEnd->wtFlags & TERM_VNULL)==0 in sqlite3WhereCodeOneLoopStart()
H A DwhereInt.h299 #define TERM_VNULL 0x0080 /* Manufactured x>NULL or x<=NULL term */ macro
H A Dwhereexpr.c524 if( (pOne->wtFlags | pTwo->wtFlags) & TERM_VNULL ) return; in whereCombineDisjuncts()
1283 TERM_VIRTUAL|TERM_DYNAMIC|TERM_VNULL); in exprAnalyze()
H A Dwhere.c1208 if( pTerm->wtFlags & TERM_VNULL ) continue; in allocateIndexInfo()
1630 }else if( (pTerm->wtFlags & TERM_VNULL)==0 ){ in whereRangeAdjust()
1937 assert( pUpper==0 || (pUpper->wtFlags & TERM_VNULL)==0 ); in whereRangeScanEst()
2851 if( (eOp==WO_ISNULL || (pTerm->wtFlags&TERM_VNULL)!=0) in whereLoopAddBtreeIndex()
3242 && (pTerm->wtFlags & TERM_VNULL)==0 in whereUsablePartialIndex()