Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dinsert.c2120 sqlite3VdbeAddOp2(v, OP_Delete, iDataCur, OPFLAG_ISNOOP); in sqlite3GenerateConstraintChecks()
2536 sqlite3VdbeChangeP5(v, OPFLAG_ISNOOP); in codeWithoutRowidPreupdate()
H A Dupdate.c1066 OPFLAG_ISUPDATE | ((hasFK>1 || chngKey) ? 0 : OPFLAG_ISNOOP), in sqlite3Update()
H A Dvdbe.c5535 assert( (pOp->p5 & OPFLAG_ISNOOP) || pC->isTable ); in sqlite3VdbeExec()
5550 assert( (pOp->p5 & OPFLAG_ISNOOP) || HasRowid(pTab) ); in sqlite3VdbeExec()
5567 if( pOp->p5 & OPFLAG_ISNOOP ) break; in sqlite3VdbeExec()
5724 if( opflags & OPFLAG_ISNOOP ) break; in sqlite3VdbeExec()
H A DsqliteInt.h3803 #define OPFLAG_ISNOOP 0x40 /* OP_Delete does pre-update-hook only */ macro