PG_OPCLASS
PG_OPCLASS defines index access method operator classes.
Each operator class defines semantics for index columns of a particular data type and a particular index access method. An operator class essentially specifies that a particular operator family is applicable to a particular indexable column data type. The set of operators from the family that are actually usable with the indexed column are whichever ones accept the column's data type as their left-hand input.
Table 1 PG_OPCLASS columns
OID in PG_AM | Index access method operator class served by an operator class | ||
OID in PG_NAMESPACE | |||
OID in PG_AUTHID | |||
OID in PG_OPFAMILY | |||
OID in PG_TYPE | |||
The value is true if this operator class is the default for opcintype. | |||
OID in PG_TYPE | Type of data stored in an index, or zero if same as opcintype |
An operator class's opcmethod must match the opfmethod of its containing operator family.