pg_class
pg_class#
The system catalog table pg_class
catalogs tables and most everything else that has columns or is otherwise similar to a table. This includes indexes (see also pg_index), sequences, views, materialized views, composite types, and TOAST tables. Below, when we mean all of these kinds of objects we speak of “relations”. Not all columns are meaningful for all relation types.
Table 1. pg_catalog.pg_class
column |
type |
references |
description |
---|---|---|---|
|
oid |
Row Row identifier |
|
|
name |
Name of the table, index, view, etc. |
|
|
oid |
pg_namespace.oid |
The object identifier of the namespace (schema) that contains this relation |
|
oid |
pg_type.oid |
The object identifier of the data type that corresponds to this table’s row type, if any (zero for indexes, which have no |
|
oid |
pg_type.oid |
For typed tables, the object identifier of the underlying composite type, zero for all other relations |
|
oid |
pg_authid.oid |
Owner of the relation |
|
oid |
pg_am.oid |
If this is a table or an index, the access method used (heap, B-tree, hash, etc.) |
|
oid |
Name of the on-disk file of this relation; zero means this is a “mapped” relation whose disk file name is determined by low-level state |
|
|
oid |
pg_tablespace.oid |
The tablespace in which this relation is stored. If zero, the database’s default tablespace is implied. (Not meaningful if the relation has no on-disk file.) |
|
int4 |
Size of the on-disk representation of this table in pages (of size |
|
|
float4 |
Number of rows in the table. This is only an estimate used by the planner. It is updated by |
|
|
int4 |
Number of pages that are marked all-visible in the table’s visibility map. This is only an estimate used by the planner. It is updated by |
|
|
oid |
pg_class.oid |
The object identifier of the TOAST table associated with this table, 0 if none. The TOAST table stores large attributes “out of line” in a secondary table. |
|
boolean |
True if this is a table and it has (or recently had) any indexes. |
|
|
boolean |
True if this table is shared across all databases in the system. Only certain system catalog tables (such as |
|
|
char |
The type of object persistence: |
|
|
char |
The type of object r = heap or append-optimized ordinary table, |
|
|
int2 |
Number of user columns in the relation (system columns not counted). There must be this many corresponding entries in |
|
|
i int2 |
Number of CHECK constraints on the table; see pg_constraint catalog. |
|
|
boolean |
True if table has (or once had) rules; see pg_rewrite catalog. |
|
|
boolean |
True if table has (or once had) triggers. |
|
|
boolean |
True if table has (or once had) any inheritance children. |
|
|
boolean |
True if table has row level security enabled; see |
|
|
boolean |
True if row level security (when enabled) will also apply to the table owner; see |
|
|
boolean |
True if relation is populated (this is true for all relations other than some materialized views). |
|
|
char |
Columns used to form “replica identity” for rows: d = default (primary key, if any), n = nothing, f = all columns, i = index with |
|
|
boolean |
True if table or index is a partition. |
|
|
oid |
pg_class.oid |
For new relations being written during a DDL operation that requires a table rewrite, this contains the object identifier of the original relation; otherwise 0. That state is only visible internally; this field should never contain anything other than 0 for a user-visible relation. |
|
xid |
Deprecated |
|
|
xid |
Deprecated |
|
|
aclitem[] |
Access privileges assigned by |
|
|
text[] |
Access-method-specific options, as “keyword=value” strings. |
|
|
pg_node_tree |
If table is a partition (see |