diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml index 6d6fbecd125..9edba96fabb 100644 --- a/doc/src/sgml/catalogs.sgml +++ b/doc/src/sgml/catalogs.sgml @@ -1900,7 +1900,9 @@ SCRAM-SHA-256$<iteration count>:&l relhassubclass bool - True if table has (or once had) any inheritance children + + True if table or index has (or once had) any inheritance children + @@ -1948,7 +1950,7 @@ SCRAM-SHA-256$<iteration count>:&l relispartition bool - True if table is a partition + True if table or index is a partition diff --git a/src/include/catalog/pg_class.h b/src/include/catalog/pg_class.h index dc6c415c586..788d7a31dc0 100644 --- a/src/include/catalog/pg_class.h +++ b/src/include/catalog/pg_class.h @@ -60,7 +60,7 @@ CATALOG(pg_class,1259,RelationRelationId) BKI_BOOTSTRAP BKI_ROWTYPE_OID(83,Relat bool relhasoids; /* T if we generate OIDs for rows of rel */ bool relhasrules; /* has (or has had) any rules */ bool relhastriggers; /* has (or has had) any TRIGGERs */ - bool relhassubclass; /* has (or has had) derived classes */ + bool relhassubclass; /* has (or has had) child tables or indexes */ bool relrowsecurity; /* row security is enabled or not */ bool relforcerowsecurity; /* row security forced for owners or * not */