summaryrefslogtreecommitdiff
path: root/src/include/catalog
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2018-10-16 09:44:43 -0700
committerAndres Freund <andres@anarazel.de>2018-10-16 09:44:43 -0700
commit02a30a09f9e57a29f7bda82f5f4bfc214eed3980 (patch)
tree7e47acc68b2ddfcc4d45dbd723f5ea9b31c3e0d5 /src/include/catalog
parentc015ccb306ec81bca3023818c9cf0113cae25be1 (diff)
downloadpostgresql-02a30a09f9e57a29f7bda82f5f4bfc214eed3980.tar.gz
Correct constness of system attributes in heap.c & prerequisites.
This allows the compiler / linker to mark affected pages as read-only. There's a fair number of pre-requisite changes, to allow the const properly be propagated. Most of consts were already required for correctness anyway, just not represented on the type-level. Arguably we could be more aggressive in using consts in related code, but.. This requires using a few of the types underlying typedefs that removes pointers (e.g. const NameData *) as declaring the typedefed type constant doesn't have the same meaning (it makes the variable const, not what it points to). Discussion: https://postgr.es/m/20181015200754.7y7zfuzsoux2c4ya@alap3.anarazel.de
Diffstat (limited to 'src/include/catalog')
-rw-r--r--src/include/catalog/heap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/catalog/heap.h b/src/include/catalog/heap.h
index b3e8fdd9c6..39f04b06ee 100644
--- a/src/include/catalog/heap.h
+++ b/src/include/catalog/heap.h
@@ -127,10 +127,10 @@ extern void RemoveAttrDefault(Oid relid, AttrNumber attnum,
extern void RemoveAttrDefaultById(Oid attrdefId);
extern void RemoveStatistics(Oid relid, AttrNumber attnum);
-extern Form_pg_attribute SystemAttributeDefinition(AttrNumber attno,
+extern const FormData_pg_attribute *SystemAttributeDefinition(AttrNumber attno,
bool relhasoids);
-extern Form_pg_attribute SystemAttributeByName(const char *attname,
+extern const FormData_pg_attribute *SystemAttributeByName(const char *attname,
bool relhasoids);
extern void CheckAttributeNamesTypes(TupleDesc tupdesc, char relkind,