Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dinsert.c1774 assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail in sqlite3GenerateConstraintChecks()
1793 case OE_Fail: { in sqlite3GenerateConstraintChecks()
2077 case OE_Fail: { in sqlite3GenerateConstraintChecks()
2080 testcase( onError==OE_Fail ); in sqlite3GenerateConstraintChecks()
2345 assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail in sqlite3GenerateConstraintChecks()
2350 case OE_Fail: { in sqlite3GenerateConstraintChecks()
2353 testcase( onError==OE_Fail ); in sqlite3GenerateConstraintChecks()
H A Dtreeview.c793 case OE_Fail: zType = "fail"; break; in sqlite3TreeViewExpr()
1081 case OE_Fail: zLabel = "INSERT OR FAIL"; break; in sqlite3TreeViewInsert()
1152 case OE_Fail: zLabel = "UPDATE OR FAIL"; break; in sqlite3TreeViewUpdate()
H A Dvtab.c1293 assert( OE_Rollback==1 && OE_Abort==2 && OE_Fail==3 ); in sqlite3_vtab_on_conflict()
H A Dvdbeaux.c3226 if( p->rc==SQLITE_OK || (p->errorAction==OE_Fail && !isSpecialError) ){ in sqlite3VdbeHalt()
3240 if( p->rc==SQLITE_OK || (p->errorAction==OE_Fail && !isSpecialError) ){ in sqlite3VdbeHalt()
3277 if( p->rc==SQLITE_OK || p->errorAction==OE_Fail ){ in sqlite3VdbeHalt()
H A Dtrigger.c1120 case OE_Fail: return "fail"; in onErrorText()
H A DsqliteInt.h2473 #define OE_Fail 3 /* Stop the operation but leave all prior changes */ macro
H A Dparse.y1630 raisetype(A) ::= FAIL. {A = OE_Fail;}
H A Dexpr.c4845 || pExpr->affExpr==OE_Fail in sqlite3ExprCodeTarget()
H A Dvdbe.c8263 assert( pOp->p2==1 || pOp->p5==OE_Fail || pOp->p5==OE_Rollback in sqlite3VdbeExec()