Index Methods and Operator Classes
- The pg_am table contains one row for every
- index method (internally known as access method). Support for
- regular access to tables is built into
- PostgreSQL, but all index methods are
- described in pg_am. It is possible to add a
- new index access method by writing the necessary code and
- then creating an entry in pg_am — but that is
- beyond the scope of this chapter (see ).
+ Operator classes are associated with an index access method, such
+ as B-Tree
+ or GIN. Custom index access method may be
+ defined with . See
+ for details.