Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A DvdbeInt.h63 #define CURTYPE_PSEUDO 3 macro
140 ((P)->eCurType==CURTYPE_PSEUDO && (P)->nullRow && (P)->seekResult==0)
H A Dvdbe.c2815 || (pC->eCurType==CURTYPE_PSEUDO && pC->seekResult==0) ); in sqlite3VdbeExec()
2819 assert( pC->eCurType!=CURTYPE_PSEUDO || pC->nullRow ); in sqlite3VdbeExec()
2824 if( pC->eCurType==CURTYPE_PSEUDO && pC->seekResult>0 ){ in sqlite3VdbeExec()
4460 pCx = allocateCursor(p, pOp->p1, pOp->p3, CURTYPE_PSEUDO); in sqlite3VdbeExec()
5923 assert( pC->eCurType!=CURTYPE_PSEUDO || pC->nullRow ); in sqlite3VdbeExec()
5971 pC = allocateCursor(p, pOp->p1, 1, CURTYPE_PSEUDO); in sqlite3VdbeExec()
H A Dvdbeaux.c771 && pC->eCurType!=CURTYPE_PSEUDO in sqlite3VdbeIncrWriteCounter()