Home
last modified time | relevance | path

Searched refs:OE_SetNull (Results 1 – 4 of 4) sorted by relevance

/sqlite-3.40.0/src/
H A Dfkey.c858 if( (p==pFKey->apTrigger[0] && pFKey->aAction[0]==OE_SetNull) in isSetNullAction()
859 || (p==pFKey->apTrigger[1] && pFKey->aAction[1]==OE_SetNull) in isSetNullAction()
1073 if( !pFKey->isDeferred && eAction!=OE_Cascade && eAction!=OE_SetNull ){ in sqlite3FkCheck()
H A Dpragma.c244 case OE_SetNull: zName = "SET NULL"; break; in actionName()
H A DsqliteInt.h2478 #define OE_SetNull 8 /* Set the foreign key value to NULL */ macro
H A Dparse.y416 refact(A) ::= SET NULL. { A = OE_SetNull; /* EV: R-33326-45252 */}