diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2023-07-12 16:12:34 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2023-07-12 16:13:31 +0200 |
commit | adf333b4edb24fc9134fd76cd6c2d65f9a89c3a4 (patch) | |
tree | 1997966d05fd03a27c90833861e67daed4c195ae /src | |
parent | 8c852ba9a4347c4778cc610ad5a9cb50ea701b5c (diff) | |
download | postgresql-adf333b4edb24fc9134fd76cd6c2d65f9a89c3a4.tar.gz postgresql-adf333b4edb24fc9134fd76cd6c2d65f9a89c3a4.zip |
Remove obsolete comment about OID support
Reviewed-by: Alvaro Herrera <alvherre@alvh.no-ip.org>
Discussion: https://www.postgresql.org/message-id/flat/52a125e4-ff9a-95f5-9f61-b87cf447e4da@eisentraut.org
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/catalog/heap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/catalog/heap.c b/src/backend/catalog/heap.c index 2a0d82aedd7..9196dcd39fd 100644 --- a/src/backend/catalog/heap.c +++ b/src/backend/catalog/heap.c @@ -843,9 +843,9 @@ AddNewAttributeTuples(Oid new_rel_oid, } /* - * Next we add the system attributes. Skip OID if rel has no OIDs. Skip - * all for a view or type relation. We don't bother with making datatype - * dependencies here, since presumably all these types are pinned. + * Next we add the system attributes. Skip all for a view or type + * relation. We don't bother with making datatype dependencies here, + * since presumably all these types are pinned. */ if (relkind != RELKIND_VIEW && relkind != RELKIND_COMPOSITE_TYPE) { |