Searched refs:OE_Ignore (Results 1 – 9 of 9) sorted by relevance
1775 || onError==OE_Ignore || onError==OE_Replace ); in sqlite3GenerateConstraintChecks()1804 assert( onError==OE_Ignore ); in sqlite3GenerateConstraintChecks()1860 if( onError==OE_Ignore ){ in sqlite3GenerateConstraintChecks()1915 overrideError = OE_Ignore; in sqlite3GenerateConstraintChecks()2027 onError = OE_Ignore; /* DO NOTHING is the same as INSERT OR IGNORE */ in sqlite3GenerateConstraintChecks()2137 case OE_Ignore: { in sqlite3GenerateConstraintChecks()2138 testcase( onError==OE_Ignore ); in sqlite3GenerateConstraintChecks()2250 onError = OE_Ignore; /* DO NOTHING is the same as INSERT OR IGNORE */ in sqlite3GenerateConstraintChecks()2346 || onError==OE_Ignore || onError==OE_Replace || onError==OE_Update ); in sqlite3GenerateConstraintChecks()2363 case OE_Ignore: { in sqlite3GenerateConstraintChecks()[all …]
794 case OE_Ignore: zType = "ignore"; break; in sqlite3TreeViewExpr()1078 case OE_Ignore: zLabel = "INSERT OR IGNORE"; break; in sqlite3TreeViewInsert()1149 case OE_Ignore: zLabel = "UPDATE OR IGNORE"; break; in sqlite3TreeViewUpdate()
340 && !pParse->isMultiWrite) ? OE_Abort : OE_Ignore); in fkLookupParent()
1294 assert( OE_Ignore==4 && OE_Replace==5 ); in sqlite3_vtab_on_conflict()
1122 case OE_Ignore: return "ignore"; in onErrorText()
463 resolvetype(A) ::= IGNORE. {A = OE_Ignore;}1616 A->affExpr = OE_Ignore;
4846 || pExpr->affExpr==OE_Ignore in sqlite3ExprCodeTarget()4857 if( pExpr->affExpr==OE_Ignore ){ in sqlite3ExprCodeTarget()4859 v, OP_Halt, SQLITE_OK, OE_Ignore, 0, pExpr->u.zToken,0); in sqlite3ExprCodeTarget()
1162 if( pOp->p2==OE_Ignore ){ in sqlite3VdbeExec()8264 || pOp->p5==OE_Abort || pOp->p5==OE_Ignore || pOp->p5==OE_Replace in sqlite3VdbeExec()8296 if( pOp->p5==OE_Ignore ){ in sqlite3VdbeExec()
2474 #define OE_Ignore 4 /* Ignore the error. Do not do the INSERT or UPDATE */ macro