mirror of
https://github.com/postgres/postgres.git
synced 2025-05-06 19:59:18 +03:00
Update C comment for pg_attribute.attislocal
Indicates if column has ever been local/non-inherited
This commit is contained in:
parent
01363beae5
commit
c6eaa880ee
@ -136,7 +136,11 @@ CATALOG(pg_attribute,1249) BKI_BOOTSTRAP BKI_WITHOUT_OIDS BKI_ROWTYPE_OID(75) BK
|
|||||||
/* Is dropped (ie, logically invisible) or not */
|
/* Is dropped (ie, logically invisible) or not */
|
||||||
bool attisdropped;
|
bool attisdropped;
|
||||||
|
|
||||||
/* Has a local definition (hence, do not drop when attinhcount is 0) */
|
/*
|
||||||
|
* Has a local definition (hence, do not drop when attinhcount is 0)
|
||||||
|
* This is set and remains set if the column was _ever_
|
||||||
|
* local/not-inherited, e.g. this can be set by ALTER TABLE NO INHERIT.
|
||||||
|
*/
|
||||||
bool attislocal;
|
bool attislocal;
|
||||||
|
|
||||||
/* Number of times inherited from direct parent relation(s) */
|
/* Number of times inherited from direct parent relation(s) */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user