]> granicus.if.org Git - postgresql/commitdiff
Improve consistency of comments in system catalog headers.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 19 Apr 2018 21:14:09 +0000 (17:14 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 19 Apr 2018 21:14:09 +0000 (17:14 -0400)
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

87 files changed:
src/backend/catalog/genbki.pl
src/include/catalog/pg_aggregate.dat
src/include/catalog/pg_aggregate.h
src/include/catalog/pg_am.dat
src/include/catalog/pg_am.h
src/include/catalog/pg_amop.dat
src/include/catalog/pg_amop.h
src/include/catalog/pg_amproc.dat
src/include/catalog/pg_amproc.h
src/include/catalog/pg_attrdef.h
src/include/catalog/pg_attribute.h
src/include/catalog/pg_auth_members.h
src/include/catalog/pg_authid.dat
src/include/catalog/pg_authid.h
src/include/catalog/pg_cast.dat
src/include/catalog/pg_cast.h
src/include/catalog/pg_class.dat
src/include/catalog/pg_class.h
src/include/catalog/pg_collation.dat
src/include/catalog/pg_collation.h
src/include/catalog/pg_constraint.h
src/include/catalog/pg_conversion.h
src/include/catalog/pg_database.dat
src/include/catalog/pg_database.h
src/include/catalog/pg_db_role_setting.h
src/include/catalog/pg_default_acl.h
src/include/catalog/pg_depend.h
src/include/catalog/pg_description.h
src/include/catalog/pg_enum.h
src/include/catalog/pg_event_trigger.h
src/include/catalog/pg_extension.h
src/include/catalog/pg_foreign_data_wrapper.h
src/include/catalog/pg_foreign_server.h
src/include/catalog/pg_foreign_table.h
src/include/catalog/pg_index.h
src/include/catalog/pg_inherits.h
src/include/catalog/pg_init_privs.h
src/include/catalog/pg_language.dat
src/include/catalog/pg_language.h
src/include/catalog/pg_largeobject.h
src/include/catalog/pg_largeobject_metadata.h
src/include/catalog/pg_namespace.dat
src/include/catalog/pg_namespace.h
src/include/catalog/pg_opclass.dat
src/include/catalog/pg_opclass.h
src/include/catalog/pg_operator.dat
src/include/catalog/pg_operator.h
src/include/catalog/pg_opfamily.dat
src/include/catalog/pg_opfamily.h
src/include/catalog/pg_partitioned_table.h
src/include/catalog/pg_pltemplate.dat
src/include/catalog/pg_pltemplate.h
src/include/catalog/pg_policy.h
src/include/catalog/pg_proc.dat
src/include/catalog/pg_proc.h
src/include/catalog/pg_publication.h
src/include/catalog/pg_publication_rel.h
src/include/catalog/pg_range.dat
src/include/catalog/pg_range.h
src/include/catalog/pg_replication_origin.h
src/include/catalog/pg_rewrite.h
src/include/catalog/pg_seclabel.h
src/include/catalog/pg_sequence.h
src/include/catalog/pg_shdepend.h
src/include/catalog/pg_shdescription.h
src/include/catalog/pg_shseclabel.h
src/include/catalog/pg_statistic.h
src/include/catalog/pg_statistic_ext.h
src/include/catalog/pg_subscription.h
src/include/catalog/pg_subscription_rel.h
src/include/catalog/pg_tablespace.dat
src/include/catalog/pg_tablespace.h
src/include/catalog/pg_transform.h
src/include/catalog/pg_trigger.h
src/include/catalog/pg_ts_config.dat
src/include/catalog/pg_ts_config.h
src/include/catalog/pg_ts_config_map.dat
src/include/catalog/pg_ts_config_map.h
src/include/catalog/pg_ts_dict.dat
src/include/catalog/pg_ts_dict.h
src/include/catalog/pg_ts_parser.dat
src/include/catalog/pg_ts_parser.h
src/include/catalog/pg_ts_template.dat
src/include/catalog/pg_ts_template.h
src/include/catalog/pg_type.dat
src/include/catalog/pg_type.h
src/include/catalog/pg_user_mapping.h

index 90506b6a8048724f5273c8770bd7cc3c0d559969..9cf26263f8f2e2090c522312fbc71847cc953fe9 100644 (file)
@@ -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'
index f8d20410efea5ed8d3bfccf354a9036ce14311d5..d2a4298569556de063b9848a55720168dfd627c2 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_aggregate.dat
-#    Initial contents of the pg_aggregate system relation.
+#    Initial contents of the pg_aggregate system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
index 8eb5f63f56ef6255ba1c3e7d3e2f8eb725859ad7..72dd581e7a4a6292ac2e287d02df0fd07bdb29c2 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_aggregate.h
- *       definition of the system "aggregate" relation (pg_aggregate)
+ *       definition of the "aggregate" system catalog (pg_aggregate)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 8722cacaaef2cdcfcb4d78696a089abd557509a7..bef53a319af46a379b93b763bee0998a32ddb99e 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_am.dat
-#    Initial contents of the pg_am system relation.
+#    Initial contents of the pg_am system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
index f821749af8219bba920e83bfa529cd7822d12d2e..26cb23498755cc51025784c630954ea83baf2f08 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_am.h
- *       definition of the system "access method" relation (pg_am)
+ *       definition of the "access method" system catalog (pg_am)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index b1cf8ec5fca34d489714eb313074da6613bbd83a..fb58f774b9338bb3689a1d9dc0a16094f39fa091 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_amop.dat
-#    Initial contents of the pg_amop system relation.
+#    Initial contents of the pg_amop system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
index 4be325221f02e3da9b4478e2641f482fde8be272..8e6f74088727716676d7f06d9b54704d3f0640e5 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_amop.h
- *       definition of the system "amop" relation (pg_amop)
+ *       definition of the "access method operator" system catalog (pg_amop)
  *
  * The amop table identifies the operators associated with each index operator
  * family and operator class (classes are subsets of families).  An associated
index 6b6c807f90e5b6ff38f9f24d77dbe9dccd6ab51e..086f76c4759e5fc3406566ebae1940ead91df417 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_amproc.dat
-#    Initial contents of the pg_amproc system relation.
+#    Initial contents of the pg_amproc system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
index d638e0cbfe0251bebd2bc0e482e539dada741be6..c34c3faa8ff9bf58368136d1003c41daff5be9b8 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_amproc.h
- *       definition of the system "amproc" relation (pg_amproc)
+ *       definition of the "access method procedure" system catalog (pg_amproc)
  *
  * The amproc table identifies support procedures associated with index
  * operator families and classes.  These procedures can't be listed in pg_amop
index 16b106d9add31878eb52d85ee6b2db66749ec91b..68800ffd8e42bacc9aa464fa836fa40faf744224 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_attrdef.h
- *       definition of the system "attribute defaults" relation (pg_attrdef)
+ *       definition of the "attribute defaults" system catalog (pg_attrdef)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 8eef7d2fedcab66fe5f043d26bd938fc10d7d519..dc36753ede03e739fd437b5c49c963f9949dd9fa 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_attribute.h
- *       definition of the system "attribute" relation (pg_attribute)
+ *       definition of the "attribute" system catalog (pg_attribute)
  *
  * The initial contents of pg_attribute are generated at compile time by
  * genbki.pl, so there is no pg_attribute.dat file.  Only "bootstrapped"
index 75bc2baa14c796ea9c12c3443a12c00e87c6ea75..277ea89c6f2baf9df4167bc80d457dd9fa91e029 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_auth_members.h
- *       definition of the system "authorization identifier members" relation
+ *       definition of the "authorization identifier members" system catalog
  *       (pg_auth_members).
  *
  *
index d8421b01627d68b3b6864a1edb8fb95224bb6c4f..55be317369170b02240fabd3d1f5e8c878196a14 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_authid.dat
-#    Initial contents of the pg_authid system relation.
+#    Initial contents of the pg_authid system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
index 863ef65ebfa6f11fdb427046ae39ea7e998a3c88..ba482f1cb914cee11f0bbeb68ef5d32b5e14d6c8 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_authid.h
- *       definition of the system "authorization identifier" relation (pg_authid)
+ *       definition of the "authorization identifier" system catalog (pg_authid)
  *
  *       pg_shadow and pg_group are now publicly accessible views on pg_authid.
  *
index c335a7686d5771f5410349c3b65bbea3d281485e..cf007528fdeada9fb6e2d31abd332c0e9a3f0bd6 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_cast.dat
-#    Initial contents of the pg_cast system relation.
+#    Initial contents of the pg_cast system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
index 10c796ab02ed3eacdef877e953e496ce1a21e91c..7f4a25b2dadefa4fb6de6a83721054338cca44f2 100644 (file)
@@ -1,13 +1,13 @@
 /*-------------------------------------------------------------------------
  *
  * pg_cast.h
- *       definition of the system "type casts" relation (pg_cast)
+ *       definition of the "type casts" system catalog (pg_cast)
  *
  * As of Postgres 8.0, pg_cast describes not only type coercion functions
  * but also length coercion functions.
  *
- *
- * Copyright (c) 2002-2018, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1994, Regents of the University of California
  *
  * src/include/catalog/pg_cast.h
  *
index e1450e3fc7a6e24f34104da23c337d4035a6408f..9fffdef37905deaef63fe55086318d873cb5172b 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_class.dat
-#    Initial contents of the pg_class system relation.
+#    Initial contents of the pg_class system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
@@ -12,7 +12,7 @@
 
 [
 
-# Note: only "bootstrapped" relations, ie those marked BKI_BOOTSTRAP, need to
+# Note: only bootstrap catalogs, ie those marked BKI_BOOTSTRAP, need to
 # have entries here.  Be sure that the OIDs listed here match those given in
 # their CATALOG and BKI_ROWTYPE_OID macros, and that the relnatts values are
 # correct.
index ef62c30cf950f4194c95145bbc0fce0afd1cc588..d1541bdfcce3c40ffb31ab15c431385a01a9c564 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_class.h
- *       definition of the system "relation" relation (pg_class)
+ *       definition of the "relation" system catalog (pg_class)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index e98a4fd817788ef76377e1d72bff99f4d78af2aa..ad16116cf4d76501403c35af3a2dfa8842617008 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_collation.dat
-#    Initial contents of the pg_collation system relation.
+#    Initial contents of the pg_collation system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
index 5c73bbf94f4ad5ff4a7784cc522f726059c56893..7e0f4461c61d59303e62ec64cb97bf22dd013308 100644 (file)
@@ -1,14 +1,13 @@
 /*-------------------------------------------------------------------------
  *
  * pg_collation.h
- *       definition of the system "collation" relation (pg_collation)
+ *       definition of the "collation" system catalog (pg_collation)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- * IDENTIFICATION
- *             src/include/catalog/pg_collation.h
+ * src/include/catalog/pg_collation.h
  *
  * NOTES
  *       The Catalog.pm module reads this file and derives schema
index 017e4de4aba6f6bcd0d391cc5a5a66b214db5036..7c1c0e1db85dd0915bc7992b0926a704dc6e7a1e 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_constraint.h
- *       definition of the system "constraint" relation (pg_constraint)
+ *       definition of the "constraint" system catalog (pg_constraint)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 7ca54e84306e800759b7996ee391b25180ff1dac..37515f64c2fbbc6cdf0a3c0a61203a60096e6f2f 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_conversion.h
- *       definition of the system "conversion" relation (pg_conversion)
+ *       definition of the "conversion" system catalog (pg_conversion)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 002075685ccc043891a1f93a178da6bffe89def5..37ee2f9458fff58dbb73be7f5b795b39580cc063 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_database.dat
-#    Initial contents of the pg_database system relation.
+#    Initial contents of the pg_database system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
index 7f03d24c1e9362b390dc6f98850ff058a29abddf..ac027b7919943136641de70d4e4f8ecac5ac93cb 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_database.h
- *       definition of the system "database" relation (pg_database)
+ *       definition of the "database" system catalog (pg_database)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index f6ae97121932e59011dadc58c4ce6d7963477301..eff801c3ce5721b3881ae7827c65378f07ac0870 100644 (file)
@@ -1,7 +1,8 @@
 /*-------------------------------------------------------------------------
  *
  * pg_db_role_setting.h
- *       definition of per-database/per-user configuration settings relation
+ *       definition of the system catalog for per-database/per-user
+ *       configuration settings (pg_db_role_setting)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index d672d5b3f888c5e9bef57a9d9980c3f912d09b47..d0410f55868190b5878b9529622e7b9acad791b1 100644 (file)
@@ -1,7 +1,8 @@
 /*-------------------------------------------------------------------------
  *
  * pg_default_acl.h
- *       definition of default ACLs for new objects.
+ *       definition of the system catalog for default ACLs of new objects
+ *       (pg_default_acl)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index bf31c1ab408ac14bf4e78f38e80a485e1368f117..482b8bd251664823d9a88cc8b1174d3c55fcb304 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_depend.h
- *       definition of the system "dependency" relation (pg_depend)
+ *       definition of the "dependency" system catalog (pg_depend)
  *
  * pg_depend has no preloaded contents, so there is no pg_depend.dat
  * file; system-defined dependencies are loaded into it during a late stage
index b95b188d2894c8980c5fea46d6b4017122905af7..74302bd451db3be14a99b7dd7ee5943b88797631 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_description.h
- *       definition of the system "description" relation (pg_description)
+ *       definition of the "description" system catalog (pg_description)
  *
  * Because the contents of this table are taken from the *.dat files
  * of other catalogs, there is no pg_description.dat file. The initial
index 52ec55debd176aedd69f351786c2091356c9f62d..e6fd41e5b23f382f34294f46a252c1e3d0e89d6e 100644 (file)
@@ -1,10 +1,11 @@
 /*-------------------------------------------------------------------------
  *
  * pg_enum.h
- *       definition of the system "enum" relation (pg_enum)
+ *       definition of the "enum" system catalog (pg_enum)
  *
  *
- * Copyright (c) 2006-2018, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1994, Regents of the University of California
  *
  * src/include/catalog/pg_enum.h
  *
index f06cbe04dc187331a77d14d6a94126455c880a8b..9af00fd68ff002f99e4d3c7fb2802a1535328e55 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_event_trigger.h
- *       definition of the system "event trigger" relation (pg_event_trigger)
+ *       definition of the "event trigger" system catalog (pg_event_trigger)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 10bbb692a5d280b7ba907b19fb820acb8d474469..c698ddd699a6d104a205079ca80713a10f7ec0dc 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_extension.h
- *       definition of the system "extension" relation (pg_extension)
+ *       definition of the "extension" system catalog (pg_extension)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 67e331987cfe39a516e67d3734c486d458e8952d..3e6191e3e25d7eff78ef7b8149b53939f2213a3b 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_foreign_data_wrapper.h
- *       definition of the system "foreign-data wrapper" relation (pg_foreign_data_wrapper)
+ *       definition of the "foreign-data wrapper" system catalog (pg_foreign_data_wrapper)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 0d25839c3da97b1ca7b1b6113b4a63463483def9..3f7cc0c0469b5e252188cc94d9d1e8b5ffe0538d 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_foreign_server.h
- *       definition of the system "foreign server" relation (pg_foreign_server)
+ *       definition of the "foreign server" system catalog (pg_foreign_server)
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
index 13de918880faf84040c790edbebb7c7c80e6eb1e..6e8b41952018cd3a2b166717eec6234462c73341 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_foreign_table.h
- *       definition of the system "foreign table" relation (pg_foreign_table)
+ *       definition of the "foreign table" system catalog (pg_foreign_table)
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
index 88ff40f82076d20303eac9bb201bbcacdff419aa..5f72a5571f22f6fae70cb0fec504524c1447de91 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_index.h
- *       definition of the system "index" relation (pg_index)
+ *       definition of the "index" system catalog (pg_index)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 3303a9c29736c4e168442bc97f3dc88716e9ac03..2a98e02c6ac2d6996800a5e096e4a8313714b294 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_inherits.h
- *       definition of the system "inherits" relation (pg_inherits)
+ *       definition of the "inherits" system catalog (pg_inherits)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 6ce26463507f0a07125a4950a1eb311b6b31b644..39de09cb9daba794e336fe11f030684523b43df4 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_init_privs.h
- *       definition of the system "initial privileges" relation (pg_init_privs)
+ *       definition of the "initial privileges" system catalog (pg_init_privs)
  *
  * NOTE: an object is identified by the OID of the row that primarily
  * defines the object, plus the OID of the table that that row appears in.
index 1b50a66ea48c2cc4601fe30e026638557876666c..c79d566d8a0c09e193ee5d464de84f7790256a2a 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_language.dat
-#    Initial contents of the pg_language system relation.
+#    Initial contents of the pg_language system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
index e2d8d1571b44015e03bee3b85c0d5b36adfc5993..83a7aa3e6a4d3609a3d07a64ed0dc9e70462143c 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_language.h
- *       definition of the system "language" relation (pg_language)
+ *       definition of the "language" system catalog (pg_language)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 481d2ff63ba40f3d5118148403ea1f0ab56b65a2..a8aa42e049a4af5b70adf5d39b665f9bbf103097 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_largeobject.h
- *       definition of the system "largeobject" relation (pg_largeobject)
+ *       definition of the "large object" system catalog (pg_largeobject)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index a8732bc48905007d1022342d976020343627d3b3..c8560dc2afbb8d9dfe314257172fc1b6cd7cfba5 100644 (file)
@@ -1,7 +1,8 @@
 /*-------------------------------------------------------------------------
  *
  * pg_largeobject_metadata.h
- *       definition of the system "largeobject_metadata" relation (pg_largeobject_metadata)
+ *       definition of the "large object metadata" system catalog
+ *       (pg_largeobject_metadata)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index e3549df27357647123fd0c6c4245d0ce7d97b07d..8a5c5c40a74e466cf707bca79fc27bc197ebb14a 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_namespace.dat
-#    Initial contents of the pg_namespace system relation.
+#    Initial contents of the pg_namespace system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
index 0d9cada79f7a8cc146d85747b05cb588038654ca..0923e066b462bd4159b399a6c984d1cdf8095109 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_namespace.h
- *       definition of the system "namespace" relation (pg_namespace)
+ *       definition of the "namespace" system catalog (pg_namespace)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 94e3e1e5fa5c6ae7d12fec477239f51f113a34fd..5271c5c915c56bf04b6dd38e3d8b4bb92b53ffbb 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_opclass.dat
-#    Initial contents of the pg_opclass system relation.
+#    Initial contents of the pg_opclass system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
index 16c3875daa8b3b3496ca4336c43b9a6423aaa733..b980327fc03fac065a989373704d796f360e7a06 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_opclass.h
- *       definition of the system "opclass" relation (pg_opclass)
+ *       definition of the "operator class" system catalog (pg_opclass)
  *
  * The primary key for this table is <opcmethod, opcname, opcnamespace> ---
  * that is, there is a row for each valid combination of opclass name and
index 43827384cfe1c89514f417637beccd33a9b1949a..d9b6bad614e18db32ed108ff51bf21c818eab5ff 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_operator.dat
-#    Initial contents of the pg_operator system relation.
+#    Initial contents of the pg_operator system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
index bbf330320e7692ced236b4065a2bf38b780d66af..3212b21418bc5804dc3fe0fae6ac82bfaf0e61c9 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_operator.h
- *       definition of the system "operator" relation (pg_operator)
+ *       definition of the "operator" system catalog (pg_operator)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 72d71ee5b2d83e807d5b0f2ad9e3ba0651ddc173..4a9a28b87e13253aacfb87362d4d18c8e7f4a72a 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_opfamily.dat
-#    Initial contents of the pg_opfamily system relation.
+#    Initial contents of the pg_opfamily system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
index ddb0641228c8d49abaab1765b6c448edf49e851b..99dedbc42d159c5d277ff3e780ab4e124b55c74a 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_opfamily.h
- *       definition of the system "opfamily" relation (pg_opfamily)
+ *       definition of the "operator family" system catalog (pg_opfamily)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 676532ae3f126d0026f6841de6554e529a451437..78bc5c81fbc535e30f8dacadbf21d3a8b152b1da 100644 (file)
@@ -1,10 +1,12 @@
 /*-------------------------------------------------------------------------
  *
  * pg_partitioned_table.h
- *       definition of the system "partitioned table" relation
+ *       definition of the "partitioned table" system catalog
+ *       (pg_partitioned_table)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1994, Regents of the University of California
  *
  * src/include/catalog/pg_partitioned_table.h
  *
index 2d8bfabbe0926dab60a15a2150fc9a53591424a2..8f1b8dab0f76c20cd7af2c07788f67d598c253ea 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_pltemplate.dat
-#    Initial contents of the pg_pltemplate system relation.
+#    Initial contents of the pg_pltemplate system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
index d84c86b08d2ab56219359f806f3980345a1d66f4..ae06b7521253b64669482aaab21c04ea71d899d7 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_pltemplate.h
- *       definition of the system "PL template" relation (pg_pltemplate)
+ *       definition of the "PL template" system catalog (pg_pltemplate)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 45fdc285f791cd4f54f2835d26f228d62458d2f9..ea3765b1cbca664dd0ab486a4108adb52d81d17e 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_policy.h
- *      definition of the system "policy" relation (pg_policy)
+ *       definition of the "policy" system catalog (pg_policy)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 9b53855236f37831f8f8be09692e487187457a81..f643f564a6b8b4ada81987f9da5829dc15a0d70e 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_proc.dat
-#    Initial contents of the pg_proc system relation.
+#    Initial contents of the pg_proc system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
index 821bc60f01fbce354313f50e75f404727c36550e..a34b2596fa0a062837264547ea606db72931faab 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_proc.h
- *       definition of the system "procedure" relation (pg_proc)
+ *       definition of the "procedure" system catalog (pg_proc)
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
index e81d62dac34abc78c89ead6a210679e97501f6e8..83c59cb10dd2371aef9c3273491ec0cd2d56737f 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_publication.h
- *       definition of the relation sets relation (pg_publication)
+ *       definition of the "publication" system catalog (pg_publication)
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
index 2208e424f4dbf7a7c858d4c8a3a5b68579b50965..d97b0fe9bd3ca1120b62c56b61dde09136992f2e 100644 (file)
@@ -1,8 +1,9 @@
 /*-------------------------------------------------------------------------
  *
  * pg_publication_rel.h
- *       definition of the publication to relation map (pg_publication_rel)
-  *
+ *       definition of the system catalog for mappings between relations and
+ *       publications (pg_publication_rel)
+ *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
index 4781ea9d36ea216b7191ebe85811920eaac62c05..54d4d1648f944edd4261c72ca32cd32dff292309 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_range.dat
-#    Initial contents of the pg_range system relation.
+#    Initial contents of the pg_range system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
index d8e16ccee75922bc37fe71a4c37bafc865aa5e93..ca2b28b4936c4508052e430517bfe4bc88ec6ce2 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_range.h
- *       definition of the system "range" relation (pg_range)
+ *       definition of the "range type" system catalog (pg_range)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index eacdd39b83be11a41ff326af831acf3f17d72f58..82ff7a7c692cbc9bc7884f1d2e700530868be1c7 100644 (file)
@@ -1,7 +1,8 @@
 /*-------------------------------------------------------------------------
  *
  * pg_replication_origin.h
- *       Persistent replication origin registry
+ *       definition of the "replication origin" system catalog
+ *       (pg_replication_origin)
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
index 77125867b323497bf186d3a203160f3f0f940928..a385445884cdbb1dfe402fd173bd774c9df4719e 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_rewrite.h
- *       definition of the system "rewrite-rule" relation (pg_rewrite)
+ *       definition of the "rewrite rule" system catalog (pg_rewrite)
  *
  * As of Postgres 7.3, the primary key for this table is <ev_class, rulename>
  * --- ie, rule names are only unique among the rules of a given table.
index 48d454897cdf5eb70a0f67a2c5f7c542c70f2eff..6889369b5de0f290947b9601cd70661b34bc7a44 100644 (file)
@@ -1,11 +1,17 @@
 /* -------------------------------------------------------------------------
  *
  * pg_seclabel.h
- *       definition of the system "security label" relation (pg_seclabel)
+ *       definition of the "security label" system catalog (pg_seclabel)
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
+ * src/include/catalog/pg_seclabel.h
+ *
+ * NOTES
+ *       The Catalog.pm module reads this file and derives schema
+ *       information.
+ *
  * -------------------------------------------------------------------------
  */
 #ifndef PG_SECLABEL_H
index a13b05e8007516b1fbd9b145a22a481af532c12d..beea215c81e3b9eae09b62fb66af18f9406557bd 100644 (file)
@@ -1,11 +1,17 @@
 /* -------------------------------------------------------------------------
  *
  * pg_sequence.h
- *       definition of the system "sequence" relation (pg_sequence)
+ *       definition of the "sequence" system catalog (pg_sequence)
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
+ * src/include/catalog/pg_sequence.h
+ *
+ * NOTES
+ *       The Catalog.pm module reads this file and derives schema
+ *       information.
+ *
  * -------------------------------------------------------------------------
  */
 #ifndef PG_SEQUENCE_H
index 0f8508cf26295faa83306a3813f5c9a7c0089b47..01e1eb760c726085d768c00fbecebc566d0b86e2 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_shdepend.h
- *       definition of the system "shared dependency" relation (pg_shdepend)
+ *       definition of the "shared dependency" system catalog (pg_shdepend)
  *
  * pg_shdepend has no preloaded contents, so there is no pg_shdepend.dat
  * file; system-defined dependencies are loaded into it during a late stage
index 00fd0e0e54f2f656ade805ca986475b6b625f8eb..53cade1548832916ba601e5be30a7749b1ae3f85 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_shdescription.h
- *       definition of the system "shared description" relation
+ *       definition of the "shared description" system catalog
  *       (pg_shdescription)
  *
  * Because the contents of this table are taken from the *.dat files
index 22ecf9816809fe6eb7ac30cba48a9e43449734d1..2630f965fd30371dceb13e7319d6a571e581a22a 100644 (file)
@@ -1,11 +1,17 @@
 /* -------------------------------------------------------------------------
  *
  * pg_shseclabel.h
- *       definition of the system "shared security label" relation (pg_shseclabel)
+ *       definition of the "shared security label" system catalog (pg_shseclabel)
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
+ * src/include/catalog/pg_shseclabel.h
+ *
+ * NOTES
+ *       The Catalog.pm module reads this file and derives schema
+ *       information.
+ *
  * -------------------------------------------------------------------------
  */
 #ifndef PG_SHSECLABEL_H
index d654d3db26ecc771ee68861ef5d011af0ab91b54..141e260de9400883bfbcdf12b23eb670a7765b9c 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_statistic.h
- *       definition of the system "statistic" relation (pg_statistic)
+ *       definition of the "statistics" system catalog (pg_statistic)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 9ccfce7c7245ff19433e6c24c44f8c9e97a65166..443798ae523e29561960fc2fb517ad7e011ca2fd 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_statistic_ext.h
- *       definition of the system "extended statistic" relation (pg_statistic_ext)
+ *       definition of the "extended statistics" system catalog (pg_statistic_ext)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 7fc1c29603a33cae2447d0f120d0622d6533c02a..82dd6faf23886fa19330ca3f6bb506bb9bd1558a 100644 (file)
@@ -1,11 +1,17 @@
 /* -------------------------------------------------------------------------
  *
  * pg_subscription.h
- *             Definition of the subscription catalog (pg_subscription).
+ *       definition of the "subscription" system catalog (pg_subscription)
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
+ * src/include/catalog/pg_subscription.h
+ *
+ * NOTES
+ *       The Catalog.pm module reads this file and derives schema
+ *       information.
+ *
  * -------------------------------------------------------------------------
  */
 #ifndef PG_SUBSCRIPTION_H
index 8971b679cdd407704ef9558611cc331d59ffc413..556cb94841dee47adb4185e9b262598436de9425 100644 (file)
@@ -1,12 +1,18 @@
 /* -------------------------------------------------------------------------
  *
  * pg_subscription_rel.h
- *             Local info about tables that come from the publisher of a
- *             subscription (pg_subscription_rel).
+ *       definition of the system catalog containing the state for each
+ *       replicated table in each subscription (pg_subscription_rel)
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
+ * src/include/catalog/pg_subscription_rel.h
+ *
+ * NOTES
+ *       The Catalog.pm module reads this file and derives schema
+ *       information.
+ *
  * -------------------------------------------------------------------------
  */
 #ifndef PG_SUBSCRIPTION_REL_H
index b623a2d39c444624e246f7e6180f7c9cb6245ba5..dc942f4be0417ad9572b7dc67f742093ee318427 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_tablespace.dat
-#    Initial contents of the pg_tablespace system relation.
+#    Initial contents of the pg_tablespace system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
index 4782e78e6b33948c5d784af0d7a026f1f9fd9375..4010f1b5a73642905199bd1db504b723e75604ca 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_tablespace.h
- *       definition of the system "tablespace" relation (pg_tablespace)
+ *       definition of the "tablespace" system catalog (pg_tablespace)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 6059b897c663e480354a382c18d72180fdf5f241..f46ff0a90e0d79e22b5c607c4691dc8a338c8f88 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_transform.h
- *       definition of the system "transform" relation (pg_transform)
+ *       definition of the "transform" system catalog (pg_transform)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 9955e62d3a0a195e22446b1b16e1ff9a053f4316..951d7d86e757875668a1b57dee5490214abe428b 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_trigger.h
- *       definition of the system "trigger" relation (pg_trigger)
+ *       definition of the "trigger" system catalog (pg_trigger)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index b57db6787dce3381d452d979d21040bf9b48c097..142aa35ab630d269a665f4bf60dddf9296457bd7 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_ts_config.dat
-#    Initial contents of the pg_ts_config system relation.
+#    Initial contents of the pg_ts_config system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
index d344bb76de81c94c8edd23236cb7caa922fe6412..ce93c2b7ffbfd552315ef9531d346c5fd3bcd67f 100644 (file)
@@ -1,7 +1,8 @@
 /*-------------------------------------------------------------------------
  *
  * pg_ts_config.h
- *     definition of configuration of tsearch
+ *       definition of the "text search configuration" system catalog
+ *       (pg_ts_config)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 090a1ca1e913aa39c2cd985737f84d43d81fcc37..097a9f5e6df929f0197a86dfd1ef69a8bf2d122d 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_ts_config_map.dat
-#    Initial contents of the pg_ts_config_map system relation.
+#    Initial contents of the pg_ts_config_map system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
index 21200215c45bca55cbd1fdccd0846c6eedbc83cd..58563233733a2cde979142a0873e5fdf0e4e42fc 100644 (file)
@@ -1,7 +1,8 @@
 /*-------------------------------------------------------------------------
  *
  * pg_ts_config_map.h
- *     definition of token mappings for configurations of tsearch
+ *       definition of the system catalog for text search token mappings
+ *       (pg_ts_config_map)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 6852303604c95a54373993674adba2a737f85655..6db8284bb78ba5519f15b5262db0916be0621fdc 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_ts_dict.dat
-#    Initial contents of the pg_ts_dict system relation.
+#    Initial contents of the pg_ts_dict system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
index 1e285adcec918e6322d67fd2688debaad9d62272..cd5f150fe8e2da748f730c4ed40e9ee8f7e89178 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_ts_dict.h
- *     definition of dictionaries for tsearch
+ *       definition of the "text search dictionary" system catalog (pg_ts_dict)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 8c507705962bc174c157eeaa0fc3738c0f0da0ab..68a639b50d5293cc5d8cbf8d28c1daaacb4f99a1 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_ts_parser.dat
-#    Initial contents of the pg_ts_parser system relation.
+#    Initial contents of the pg_ts_parser system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
index ccaf40bbb4169804a55c3dd980ad0f4fe5b31173..34585eac00c099fce661dfb6dc4a2b8b0cfbb2f7 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_ts_parser.h
- *     definition of parsers for tsearch
+ *       definition of the "text search parser" system catalog (pg_ts_parser)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 1322c390226f8162eb2354f645a6af3f5d9d409d..8d750ecac004ec8b31da762c986a4ee2f305b4c3 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_ts_template.dat
-#    Initial contents of the pg_ts_template system relation.
+#    Initial contents of the pg_ts_template system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
index 5e66e02beff8576c790eb3501fdebd5e534f5f03..50be08eca565faf15996d7ff8ff86a267682bd52 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_ts_template.h
- *     definition of dictionary templates for tsearch
+ *       definition of the "text search template" system catalog (pg_ts_template)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index ae7e89b32226903ac66410d439eb2bb6771aad38..48e01cd694767f4875731a7907365c601665b6ef 100644 (file)
@@ -1,7 +1,7 @@
 #----------------------------------------------------------------------
 #
 # pg_type.dat
-#    Initial contents of the pg_type system relation.
+#    Initial contents of the pg_type system catalog.
 #
 # Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 # Portions Copyright (c) 1994, Regents of the University of California
index 8f301db91c5fc077729e63b86e0a64029f158b36..5914ee706ae94776884c2edfc2bde7c643edf040 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_type.h
- *       definition of the system "type" relation (pg_type)
+ *       definition of the "type" system catalog (pg_type)
  *
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
index 6efbed0a9d448d50a8ca836dd646d17c2c611191..e4e2ff36dcfec159a18fcb02ef6908de074c3974 100644 (file)
@@ -1,7 +1,7 @@
 /*-------------------------------------------------------------------------
  *
  * pg_user_mapping.h
- *       definition of the system "user mapping" relation (pg_user_mapping)
+ *       definition of the "user mapping" system catalog (pg_user_mapping)
  *
  * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California