Home | History | Annotate | Download | only in orig

Lines Matching defs:OE_Abort

11071 #define OE_Abort    2   /* Back out changes but do no rollback transaction */
11076 #define OE_Restrict 6 /* OE_Abort for IMMEDIATE, OE_Rollback for DEFERRED */
11173 u8 onError; /* OE_Abort, OE_Ignore, OE_Replace, or OE_None */
62599 ** * OP_Halt with P1=SQLITE_CONSTRAINT and P2=OE_Abort.
62600 ** * OP_HaltIfNull with P1=SQLITE_CONSTRAINT and P2=OE_Abort.
62627 && ((pOp->p1&0xff)==SQLITE_CONSTRAINT && pOp->p2==OE_Abort))
63805 p->errorAction = OE_Abort;
64472 p->errorAction = OE_Abort;
64613 }else if( p->errorAction==OE_Abort ){
68857 ** if P2==OE_Fail. Do the rollback if P2==OE_Rollback. If P2==OE_Abort,
72956 p->errorAction = OE_Abort;
74288 || pOp->p5==OE_Abort || pOp->p5==OE_Ignore || pOp->p5==OE_Replace
74317 p->errorAction = ((pOp->p5==OE_Replace) ? OE_Abort : pOp->p5);
81304 || pExpr->affinity==OE_Abort
81313 if( pExpr->affinity==OE_Abort ){
81677 case OE_Abort: zType = "abort"; break;
88807 sqlite3UniqueConstraint(pParse, OE_Abort, pIndex);
88880 int onError, /* OE_Abort, OE_Ignore, OE_Replace, or OE_None */
90048 if( onError==OE_Abort ){
91334 sqlite3VdbeChangeP5(v, OE_Abort);
93857 OE_Abort, 0, P4_STATIC, P5_ConstraintFK);
94161 OE_Abort, 0, P4_STATIC, P5_ConstraintFK);
94641 pRaise->affinity = OE_Abort;
94733 sqlite3CodeRowTriggerDirect(pParse, pAct, pTab, regOld, OE_Abort, 0);
95738 sqlite3VdbeChangeP5(v, onError==OE_Default ? OE_Abort : onError);
95974 onError = OE_Abort;
95977 onError = OE_Abort;
95979 assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail
95982 case OE_Abort:
96016 onError = overrideError!=OE_Default ? overrideError : OE_Abort;
96025 if( onError==OE_Replace ) onError = OE_Abort; /* IMP: R-15569-63625 */
96046 onError = OE_Abort;
96080 onError = OE_Abort;
96084 case OE_Abort:
96210 onError = OE_Abort;
96272 assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail
96276 case OE_Abort:
96485 ** * The same onError processing (OE_Abort, OE_Ignore, etc)
96584 if( onError==OE_Default ) onError = OE_Abort;
96724 || (onError!=OE_Abort && onError!=OE_Rollback) /* (3) */
96738 ** (3) onError is something other than OE_Abort and OE_Rollback.
99296 { OP_Halt, SQLITE_OK, OE_Abort, 0}, /* 3 */
107459 u8 orconf /* The conflict algorithm (OE_Abort, OE_Replace, etc.) */
107488 u8 orconf /* The conflict algorithm. (OE_Abort, OE_Ignore, etc) */
107764 int orconf /* Conflict algorithm. (OE_Abort, etc) */
107840 case OE_Abort: return "abort";
108949 sqlite3VdbeChangeP5(v, onError==OE_Default ? OE_Abort : onError);
110387 assert( OE_Rollback==1 && OE_Abort==2 && OE_Fail==3 );
120453 {yygotominor.yy328 = OE_Abort;}