Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dwherecode.c2642 assert( pParse->withinRJSubrtn < 255 ); in sqlite3WhereCodeOneLoopStart()
2643 pParse->withinRJSubrtn++; in sqlite3WhereCodeOneLoopStart()
2732 assert( pParse->withinRJSubrtn < 100 ); in sqlite3WhereRightJoinLoop()
2733 pParse->withinRJSubrtn++; in sqlite3WhereRightJoinLoop()
2766 assert( pParse->withinRJSubrtn>0 ); in sqlite3WhereRightJoinLoop()
2767 pParse->withinRJSubrtn--; in sqlite3WhereRightJoinLoop()
H A Dexpr.c4591 if( pLeft->iTable==0 || pParse->withinRJSubrtn > pLeft->op2 ){ in sqlite3ExprCodeTarget()
4593 pLeft->op2 = pParse->withinRJSubrtn; in sqlite3ExprCodeTarget()
H A DsqliteInt.h3643 u8 withinRJSubrtn; /* Nesting level for RIGHT JOIN body subroutines */ member
H A Dwhere.c6571 pParse->withinRJSubrtn -= nRJ; in sqlite3WhereEnd()