@@ -16,9 +16,11 @@ catalogs in interesting ways.
1616Note that unexpected matches may indicate bogus entries in system tables;
1717don't accept a peculiar match without question. In particular, a field
1818shown as joining to more than one target table is probably messed up.
19- In 9.6devel, the *only* fields that should join to more than one target
20- table are pg_description.objoid, pg_depend.objid, pg_depend.refobjid,
21- pg_shdescription.objoid, pg_shdepend.objid, and pg_shdepend.refobjid.
19+ In 9.6, the *only* fields that should join to more than one target
20+ table are:
21+ pg_description.objoid, pg_depend.objid, pg_depend.refobjid,
22+ pg_shdescription.objoid, pg_shdepend.objid, pg_shdepend.refobjid,
23+ and pg_init_privs.objoid.
2224(Running make_oidjoins_check is an easy way to spot fields joining to more
2325than one table, BTW.)
2426
@@ -33,7 +35,7 @@ regression test. The oidjoins test should be updated after any
3335revision in the patterns of cross-links between system tables.
3436(Typically we update it at the end of each development cycle.)
3537
36- NOTE: as of 9.6devel , make_oidjoins_check produces two bogus join checks:
38+ NOTE: as of 9.6 , make_oidjoins_check produces two bogus join checks:
3739Join pg_catalog.pg_class.relfilenode => pg_catalog.pg_class.oid
3840Join pg_catalog.pg_database.datlastsysoid => pg_catalog.pg_database.oid
3941These are artifacts and should not be added to the oidjoins regression test.
@@ -45,6 +47,9 @@ neither of which should be added to the regression test.
4547Join pg_catalog.pg_aggregate.aggfnoid => pg_catalog.pg_proc.oid
4648Join pg_catalog.pg_aggregate.aggtransfn => pg_catalog.pg_proc.oid
4749Join pg_catalog.pg_aggregate.aggfinalfn => pg_catalog.pg_proc.oid
50+ Join pg_catalog.pg_aggregate.aggcombinefn => pg_catalog.pg_proc.oid
51+ Join pg_catalog.pg_aggregate.aggserialfn => pg_catalog.pg_proc.oid
52+ Join pg_catalog.pg_aggregate.aggdeserialfn => pg_catalog.pg_proc.oid
4853Join pg_catalog.pg_aggregate.aggmtransfn => pg_catalog.pg_proc.oid
4954Join pg_catalog.pg_aggregate.aggminvtransfn => pg_catalog.pg_proc.oid
5055Join pg_catalog.pg_aggregate.aggmfinalfn => pg_catalog.pg_proc.oid
@@ -102,6 +107,7 @@ Join pg_catalog.pg_index.indexrelid => pg_catalog.pg_class.oid
102107Join pg_catalog.pg_index.indrelid => pg_catalog.pg_class.oid
103108Join pg_catalog.pg_inherits.inhrelid => pg_catalog.pg_class.oid
104109Join pg_catalog.pg_inherits.inhparent => pg_catalog.pg_class.oid
110+ Join pg_catalog.pg_init_privs.classoid => pg_catalog.pg_class.oid
105111Join pg_catalog.pg_language.lanowner => pg_catalog.pg_authid.oid
106112Join pg_catalog.pg_language.lanplcallfoid => pg_catalog.pg_proc.oid
107113Join pg_catalog.pg_language.laninline => pg_catalog.pg_proc.oid
0 commit comments