Change pg_amop's index on (amopclaid,amopopr) to index (amopopr,amopclaid).

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

Commit: 1c9ac7dfd032b3e75067cf9dad1e6731e2ae0078
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2003-05-13T04:38:58Z
Releases: 7.4.1
Change pg_amop's index on (amopclaid,amopopr) to index (amopopr,amopclaid).
This makes no difference for existing uses, but allows SelectSortFunction()
and pred_test_simple_clause() to use indexscans instead of seqscans to
locate entries for a particular operator in pg_amop.  Better yet, they can
use the SearchSysCacheList() API to cache the search results.

Files