Home
last modified time | relevance | path

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

/titanic_50/usr/src/lib/libsqlite/src/
H A Dinsert.c666 if( onError==OE_Replace && pTab->aCol[i].zDflt==0 ){ in sqliteGenerateConstraintChecks()
687 case OE_Replace: { in sqliteGenerateConstraintChecks()
734 case OE_Replace: { in sqliteGenerateConstraintChecks()
792 if( onError==OE_Ignore ) onError = OE_Replace; in sqliteGenerateConstraintChecks()
837 case OE_Replace: { in sqliteGenerateConstraintChecks()
H A Dupdate.c322 if( onError==OE_Replace ){ in sqliteUpdate()
327 if( pIdx->onError==OE_Replace ){ in sqliteUpdate()
H A Dbuild.c1647 if( onError!=OE_Replace || pTab->pIndex==0 in sqliteCreateIndex()
1648 || pTab->pIndex->onError==OE_Replace){ in sqliteCreateIndex()
1653 while( pOther->pNext && pOther->pNext->onError!=OE_Replace ){ in sqliteCreateIndex()
H A DsqliteInt.h587 #define OE_Replace 5 /* Delete existing record, then do INSERT or UPDATE */ macro
H A Dparse.y266 resolvetype(A) ::= REPLACE. { A = OE_Replace; }
513 insert_cmd(A) ::= REPLACE. {A = OE_Replace;}