Home
last modified time | relevance | path

Searched defs:FKey (Results 1 – 2 of 2) sorted by relevance

/freebsd-10-stable/crypto/heimdal/lib/sqlite/
Dsqlite3.c7880 typedef struct FKey FKey; typedef
9994 struct FKey { struct
9996 FKey *pNextFrom; /* Next foreign key in pFrom */ argument
9998 FKey *pNextTo; /* Next foreign key on table named zTo */ argument
9999 FKey *pPrevTo; /* Previous foreign key on table named zTo */ argument
10000 int nCol; /* Number of columns in this key */
10002 u8 isDeferred; /* True if constraint checking is deferred till COMMIT */
10003 u8 aAction[2]; /* ON DELETE and ON UPDATE actions, respectively */
10004 Trigger *apTrigger[2]; /* Triggers for aAction[] actions */
10005 struct sColMap { /* Mapping of columns in pFrom to columns in zTo */
[all …]
/freebsd-10-stable/contrib/sqlite3/
Dsqlite3.c11946 typedef struct FKey FKey; typedef
14509 struct FKey { struct
14511 FKey *pNextFrom; /* Next FKey with the same in pFrom. Next parent of pFrom */ argument
14513 FKey *pNextTo; /* Next with the same zTo. Next child of zTo. */ argument
14514 FKey *pPrevTo; /* Previous with the same zTo */ argument
14515 int nCol; /* Number of columns in this key */
14517 u8 isDeferred; /* True if constraint checking is deferred till COMMIT */
14518 u8 aAction[2]; /* ON DELETE and ON UPDATE actions, respectively */
14519 Trigger *apTrigger[2];/* Triggers for aAction[] actions */
14520 struct sColMap { /* Mapping of columns in pFrom to columns in zTo */
[all …]