Home | History | Annotate | Download | only in dist

Lines Matching defs:OE_Abort

10290 #define OE_Abort    2   /* Back out changes but do no rollback transaction */
10295 #define OE_Restrict 6 /* OE_Abort for IMMEDIATE, OE_Rollback for DEFERRED */
10383 u8 onError; /* OE_Abort, OE_Ignore, OE_Replace, or OE_None */
59890 ** * OP_Halt with P1=SQLITE_CONSTRAINT and P2=OE_Abort.
59891 ** * OP_HaltIfNull with P1=SQLITE_CONSTRAINT and P2=OE_Abort.
59918 && (pOp->p1==SQLITE_CONSTRAINT && pOp->p2==OE_Abort))
60968 p->errorAction = OE_Abort;
61622 p->errorAction = OE_Abort;
61761 }else if( p->errorAction==OE_Abort ){
65696 ** if P2==OE_Fail. Do the rollback if P2==OE_Rollback. If P2==OE_Abort,
69665 p->errorAction = OE_Abort;
70977 || pOp->p5==OE_Abort || pOp->p5==OE_Ignore || pOp->p5==OE_Replace
71006 p->errorAction = ((pOp->p5==OE_Replace) ? OE_Abort : pOp->p5);
77276 || pExpr->affinity==OE_Abort
77285 if( pExpr->affinity==OE_Abort ){
77589 case OE_Abort: zType = "abort"; break;
83637 pParse, OE_Abort, "indexed columns are not unique", P4_STATIC
83664 pParse, OE_Abort, "indexed columns are not unique", P4_STATIC);
83700 int onError, /* OE_Abort, OE_Ignore, OE_Replace, or OE_None */
84876 if( onError==OE_Abort ){
85912 sqlite3VdbeChangeP5(v, OE_Abort);
88205 pParse, OE_Abort, "foreign key constraint failed", P4_STATIC
88443 pParse, OE_Abort, "foreign key constraint failed", P4_STATIC
88858 pRaise->affinity = OE_Abort;
88947 sqlite3CodeRowTriggerDirect(pParse, pAction, pTab, regOld, OE_Abort, 0);
89610 sqlite3VdbeAddOp2(v, OP_Halt, SQLITE_INTERNAL, OE_Abort);
89971 sqlite3VdbeChangeP5(v, onError==OE_Default ? OE_Abort : onError);
90178 onError = OE_Abort;
90181 onError = OE_Abort;
90183 assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail
90186 case OE_Abort:
90219 onError = overrideError!=OE_Default ? overrideError : OE_Abort;
90223 if( onError==OE_Replace ) onError = OE_Abort; /* IMP: R-15569-63625 */
90239 onError = OE_Abort;
90248 onError = OE_Abort;
90252 case OE_Abort:
90343 onError = OE_Abort;
90347 else if( onError==OE_Fail ) onError = OE_Abort;
90359 assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail
90363 case OE_Abort:
90546 ** * The same onError processing (OE_Abort, OE_Ignore, etc)
90636 if( onError==OE_Default ) onError = OE_Abort;
90761 || (onError!=OE_Abort && onError!=OE_Rollback) /* (3) */
90775 ** (3) onError is something other than OE_Abort and OE_Rollback.
92776 { OP_Halt, SQLITE_OK, OE_Abort, 0}, /* 3 */
99750 u8 orconf /* The conflict algorithm (OE_Abort, OE_Replace, etc.) */
99782 u8 orconf /* The conflict algorithm. (OE_Abort, OE_Ignore, etc) */
100057 int orconf /* Conflict algorithm. (OE_Abort, etc) */
100133 case OE_Abort: return "abort";
101140 sqlite3VdbeChangeP5(v, onError==OE_Default ? OE_Abort : onError);
102526 assert( OE_Rollback==1 && OE_Abort==2 && OE_Fail==3 );
110766 {yygotominor.yy392 = OE_Abort;}