mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-06 15:49:35 +03:00
Comment enhancements. Add an ALWAYS macro in fkey.c to indicate a branch
that is always taken. FossilOrigin-Name: d5b714cffffe588dd4dd10e0b82df8d99657be88
This commit is contained in:
@@ -1283,9 +1283,9 @@ struct Table {
|
||||
** the from-table is created. The existence of the to-table is not checked.
|
||||
*/
|
||||
struct FKey {
|
||||
Table *pFrom; /* The table that contains the REFERENCES clause */
|
||||
Table *pFrom; /* Table containing the REFERENCES clause (aka: Child) */
|
||||
FKey *pNextFrom; /* Next foreign key in pFrom */
|
||||
char *zTo; /* Name of table that the key points to */
|
||||
char *zTo; /* Name of table that the key points to (aka: Parent) */
|
||||
FKey *pNextTo; /* Next foreign key on table named zTo */
|
||||
FKey *pPrevTo; /* Previous foreign key on table named zTo */
|
||||
int nCol; /* Number of columns in this key */
|
||||
|
||||
Reference in New Issue
Block a user