Searched defs:FKey (Results 1 – 4 of 4) sorted by relevance
608 typedef struct FKey FKey; typedef1342 struct FKey { struct1344 FKey *pNextFrom; /* Next foreign key in pFrom */ argument1346 FKey *pNextTo; /* Next foreign key on table named zTo */ argument1347 FKey *pPrevTo; /* Previous foreign key on table named zTo */ argument1348 int nCol; /* Number of columns in this key */1350 u8 isDeferred; /* True if constraint checking is deferred till COMMIT */1351 u8 aAction[2]; /* ON DELETE and ON UPDATE actions, respectively */1352 Trigger *apTrigger[2]; /* Triggers for aAction[] actions */1353 struct sColMap { /* Mapping of columns in pFrom to columns in zTo */[all …]
7588 typedef struct FKey FKey; typedef9687 struct FKey { struct9689 FKey *pNextFrom; /* Next foreign key in pFrom */ argument9691 FKey *pNextTo; /* Next foreign key on table named zTo */ argument9692 FKey *pPrevTo; /* Previous foreign key on table named zTo */ argument9693 int nCol; /* Number of columns in this key */9695 u8 isDeferred; /* True if constraint checking is deferred till COMMIT */9696 u8 aAction[2]; /* ON DELETE and ON UPDATE actions, respectively */9697 Trigger *apTrigger[2]; /* Triggers for aAction[] actions */9698 struct sColMap { /* Mapping of columns in pFrom to columns in zTo */[all …]
8791 typedef struct FKey FKey; typedef11027 struct FKey { struct11029 FKey *pNextFrom; /* Next FKey with the same in pFrom. Next parent of pFrom */ argument11031 FKey *pNextTo; /* Next with the same zTo. Next child of zTo. */ argument11032 FKey *pPrevTo; /* Previous with the same zTo */ argument11033 int nCol; /* Number of columns in this key */11035 u8 isDeferred; /* True if constraint checking is deferred till COMMIT */11036 u8 aAction[2]; /* ON DELETE and ON UPDATE actions, respectively */11037 Trigger *apTrigger[2];/* Triggers for aAction[] actions */11038 struct sColMap { /* Mapping of columns in pFrom to columns in zTo */[all …]