Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dinsert.c663 if( onError==OE_Replace && pTab->aCol[i].zDflt==0 ){ in sqliteGenerateConstraintChecks()
684 case OE_Replace: { in sqliteGenerateConstraintChecks()
731 case OE_Replace: { in sqliteGenerateConstraintChecks()
789 if( onError==OE_Ignore ) onError = OE_Replace; in sqliteGenerateConstraintChecks()
834 case OE_Replace: { in sqliteGenerateConstraintChecks()
H A Dupdate.c319 if( onError==OE_Replace ){ in sqliteUpdate()
324 if( pIdx->onError==OE_Replace ){ in sqliteUpdate()
H A Dbuild.c1644 if( onError!=OE_Replace || pTab->pIndex==0 in sqliteCreateIndex()
1645 || pTab->pIndex->onError==OE_Replace){ in sqliteCreateIndex()
1650 while( pOther->pNext && pOther->pNext->onError!=OE_Replace ){ in sqliteCreateIndex()
H A DsqliteInt.h584 #define OE_Replace 5 /* Delete existing record, then do INSERT or UPDATE */ macro
H A Dparse.y264 resolvetype(A) ::= REPLACE. { A = OE_Replace; }
511 insert_cmd(A) ::= REPLACE. {A = OE_Replace;}