Restructure system-catalog index updating logic. Instead of having

Tom Lane <tgl@sss.pgh.pa.us>

Commit: 15fe086fba52bbac7560151e06d1efb3daa69e4a
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2002-08-05T03:29:17Z
Releases: 7.3.1
Restructure system-catalog index updating logic.  Instead of having
hardwired lists of index names for each catalog, use the relcache's
mechanism for caching lists of OIDs of indexes of any table.  This
reduces the common case of updating system catalog indexes to a single
line, makes it much easier to add a new system index (in fact, you
can now do so on-the-fly if you want to), and as a nice side benefit
improves performance a little.  Per recent pghackers discussion.

Files