All Products
Search
Document Center

PolarDB:pg_am

Last Updated:Jun 12, 2024

The catalog pg_am stores information about relation access methods. There is one row for each access method supported by the system. Currently, only tables and indexes have access methods.

Column

Type

Description

oid

oid

Row identifier.

amname

name

Name of the access method.

amhandler (references pg_proc.oid)

regproc

OID of a handler function that is responsible for supplying information about the access method.

amtype

char

t= table (including materialized views),i= index.