diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2018-04-19 17:14:09 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2018-04-19 17:14:09 -0400 |
commit | 68c23cba341a0083afa8e30f0c43bf18cbd01bb7 (patch) | |
tree | e2826accf7bda4171122511a67f93e02b02e5e55 /src/backend | |
parent | e5d83995e9f88426b325a7ea8ce0770926dc64de (diff) | |
download | postgresql-68c23cba341a0083afa8e30f0c43bf18cbd01bb7.tar.gz postgresql-68c23cba341a0083afa8e30f0c43bf18cbd01bb7.zip |
Improve consistency of comments in system catalog headers.
Use the term "system catalog" rather than "system relation" in assorted
places where it's clearly referring to a table rather than, say, an
index. Use more natural word order in the header boilerplate, improve
some of the one-liner catalog descriptions, and fix assorted random
deviations from the normal boilerplate. All purely neatnik-ism, but
why not.
John Naylor, some additional cleanup by me
Discussion: https://postgr.es/m/CAJVSVGUeJmFB3h-NJ18P32NPa+kzC165nm7GSoGHfPaN80Wxcw@mail.gmail.com
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/catalog/genbki.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/catalog/genbki.pl b/src/backend/catalog/genbki.pl index 90506b6a804..9cf26263f8f 100644 --- a/src/backend/catalog/genbki.pl +++ b/src/backend/catalog/genbki.pl @@ -535,8 +535,8 @@ sub gen_pg_attribute { my $table = $catalogs{$table_name}; - # Currently, all bootstrapped relations also need schemapg.h - # entries, so skip if the relation isn't to be in schemapg.h. + # Currently, all bootstrap catalogs also need schemapg.h + # entries, so skip if it isn't to be in schemapg.h. next if !$table->{schema_macro}; $schemapg_entries{$table_name} = []; @@ -769,7 +769,7 @@ sub form_pg_type_symbol { my $typename = shift; - # Skip for rowtypes of bootstrap tables, since they have their + # Skip for rowtypes of bootstrap catalogs, since they have their # own naming convention defined elsewhere. return if $typename eq 'pg_type' |