Home
last modified time | relevance | path

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

/src/contrib/sqlite3/
H A Dsqlite3.c17080 #define OP_NotExists 31 /* jump, synopsis: intkey=r[P3] */ macro
99803 case OP_NotExists: /* jump, in3, ncycle */
103647 assert( v->aOp[v->pc].opcode==OP_NotExists );
103851 {OP_NotExists, 0, 5, 1}, /* 2: Seek the cursor to rowid=r[1] */
121394 u8 seekOp = HasRowid(pTab) ? OP_NotExists : OP_NotFound;
130118 opSeek = HasRowid(pTab) ? OP_NotExists : OP_NotFound;
130121 VdbeCoverageIf(v, opSeek==OP_NotExists);
130169 VdbeCoverageIf(v, opSeek==OP_NotExists);
133712 sqlite3VdbeAddOp3(v, OP_NotExists, iCur, 0, regTemp); VdbeCoverage(v);
137108 sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, addrRowidOk, regNewData);
[all …]