]> granicus.if.org Git - postgresql/commitdiff
Remove out-of-date comment about formrdesc().
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 1 Mar 2018 17:03:29 +0000 (12:03 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 1 Mar 2018 17:03:29 +0000 (12:03 -0500)
formrdesc's comment listed the specific catalogs it is called for,
but the list was out of date.  Rather than jumping back onto that
maintenance treadmill, let's just remove the list.  It tells the
reader nothing that can't be learned quickly and more reliably by
searching relcache.c for callers of formrdesc().

Oversight noted by Kyotaro Horiguchi.

Discussion: https://postgr.es/m/20180214.105314.138966434.horiguchi.kyotaro@lab.ntt.co.jp

src/backend/utils/cache/relcache.c

index 1ebf9c4ed2bfeff069a6157d2c5d4c758d51a725..9ee78f885f95047ff163693b6024db479d8f2a78 100644 (file)
@@ -1847,11 +1847,7 @@ LookupOpclassInfo(Oid operatorClassOid,
  *             quite a lot since we only need to work for a few basic system
  *             catalogs.
  *
- * formrdesc is currently used for: pg_database, pg_authid, pg_auth_members,
- * pg_shseclabel, pg_class, pg_attribute, pg_proc, and pg_type
- * (see RelationCacheInitializePhase2/3).
- *
- * Note that these catalogs can't have constraints (except attnotnull),
+ * The catalogs this is used for can't have constraints (except attnotnull),
  * default values, rules, or triggers, since we don't cope with any of that.
  * (Well, actually, this only matters for properties that need to be valid
  * during bootstrap or before RelationCacheInitializePhase3 runs, and none of