Searched refs:OPFLAG_ISNOOP (Results 1 – 4 of 4) sorted by relevance
2120 sqlite3VdbeAddOp2(v, OP_Delete, iDataCur, OPFLAG_ISNOOP); in sqlite3GenerateConstraintChecks()2536 sqlite3VdbeChangeP5(v, OPFLAG_ISNOOP); in codeWithoutRowidPreupdate()
1066 OPFLAG_ISUPDATE | ((hasFK>1 || chngKey) ? 0 : OPFLAG_ISNOOP), in sqlite3Update()
5535 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()
3803 #define OPFLAG_ISNOOP 0x40 /* OP_Delete does pre-update-hook only */ macro