Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dinsert.c1760 if( onError==OE_Replace ){ in sqlite3GenerateConstraintChecks()
1775 || onError==OE_Ignore || onError==OE_Replace ); in sqlite3GenerateConstraintChecks()
1779 case OE_Replace: { in sqlite3GenerateConstraintChecks()
2045 if( onError==OE_Replace /* IPK rule is REPLACE */ in sqlite3GenerateConstraintChecks()
2084 case OE_Replace: { in sqlite3GenerateConstraintChecks()
2270 && onError==OE_Replace /* Condition 1 */ in sqlite3GenerateConstraintChecks()
2289 if( isUpdate || onError==OE_Replace ){ in sqlite3GenerateConstraintChecks()
2371 assert( onError==OE_Replace ); in sqlite3GenerateConstraintChecks()
2384 regR, nPkField, 0, OE_Replace, in sqlite3GenerateConstraintChecks()
2578 assert( pIdx->onError!=OE_Replace in sqlite3CompleteInsertion()
[all …]
H A Dupdate.c571 if( onError==OE_Replace ) bReplace = 1; in sqlite3Update()
585 if( onError==OE_Default && pIdx->onError==OE_Replace ){ in sqlite3Update()
H A Dtreeview.c1077 case OE_Replace: zLabel = "REPLACE"; break; in sqlite3TreeViewInsert()
1148 case OE_Replace: zLabel = "UPDATE OR REPLACE"; break; in sqlite3TreeViewUpdate()
H A Dbuild.c4469 if( pThis->onError!=OE_Replace ) continue; in sqlite3CreateIndex()
4470 while( (pNext = pThis->pNext)!=0 && pNext->onError!=OE_Replace ){ in sqlite3CreateIndex()
4483 assert( pThis->onError!=OE_Replace in sqlite3CreateIndex()
4485 || pThis->pNext->onError==OE_Replace ); in sqlite3CreateIndex()
H A Dvtab.c1294 assert( OE_Ignore==4 && OE_Replace==5 ); in sqlite3_vtab_on_conflict()
H A Dtrigger.c1121 case OE_Replace: return "replace"; in onErrorText()
H A Dparse.y464 resolvetype(A) ::= REPLACE. {A = OE_Replace;}
1025 insert_cmd(A) ::= REPLACE. {A = OE_Replace;}
H A DsqliteInt.h2475 #define OE_Replace 5 /* Delete existing record, then do INSERT or UPDATE */ macro
H A Dvdbe.c8264 || pOp->p5==OE_Abort || pOp->p5==OE_Ignore || pOp->p5==OE_Replace in sqlite3VdbeExec()
8299 p->errorAction = ((pOp->p5==OE_Replace) ? OE_Abort : pOp->p5); in sqlite3VdbeExec()
H A Dwhere.c3418 sPk.onError = OE_Replace; in whereLoopAddBtree()