Home
last modified time | relevance | path

Searched refs:OPFLAG_SAVEPOSITION (Results 1 – 7 of 7) sorted by relevance

/sqlite-3.40.0/src/
H A Dupdate.c1071 sqlite3VdbeChangeP5(v, OPFLAG_SAVEPOSITION); in sqlite3Update()
1089 OPFLAG_ISUPDATE | (eOnePass==ONEPASS_MULTI ? OPFLAG_SAVEPOSITION : 0), in sqlite3Update()
H A Ddelete.c846 if( eMode==ONEPASS_MULTI ) p5 |= OPFLAG_SAVEPOSITION; in sqlite3GenerateRowDelete()
H A Dvdbe.c5583 (pOp->p5 & (OPFLAG_APPEND|OPFLAG_SAVEPOSITION|OPFLAG_PREFORMAT)), in sqlite3VdbeExec()
5702 if( (pOp->p5 & OPFLAG_SAVEPOSITION)!=0 && pC->isTable ){ in sqlite3VdbeExec()
5728 assert( (pOp->p5 & ~(OPFLAG_SAVEPOSITION|OPFLAG_AUXDELETE))==0 ); in sqlite3VdbeExec()
5729 assert( OPFLAG_SAVEPOSITION==BTREE_SAVEPOSITION ); in sqlite3VdbeExec()
6308 (pOp->p5 & (OPFLAG_APPEND|OPFLAG_SAVEPOSITION|OPFLAG_PREFORMAT)), in sqlite3VdbeExec()
H A Dinsert.c2570 || update_flags==(OPFLAG_ISUPDATE|OPFLAG_SAVEPOSITION) in sqlite3CompleteInsertion()
2589 pik_flags |= (update_flags & OPFLAG_SAVEPOSITION); in sqlite3CompleteInsertion()
H A Dalter.c2253 sqlite3VdbeChangeP5(v, OPFLAG_SAVEPOSITION); in sqlite3AlterDropColumn()
H A Dwindow.c2339 sqlite3VdbeChangeP5(v, OPFLAG_SAVEPOSITION); in windowCodeOp()
H A DsqliteInt.h3811 #define OPFLAG_SAVEPOSITION 0x02 /* OP_Delete/Insert: save cursor pos */ macro