PostgreSQL 19 ← 18
SYSTEM CATALOG · System catalog
pg_class
The catalog pg_class describes tables and other objects that have columns or are otherwise similar to a table. This includes indexes (but see also pg_index), sequences (but see also pg_sequence), views, materialized views, composite types, and TOAST tables; see relkind. Below, when we mean all of these kinds of objects we speak of “relations”. Not all of pg_class's columns are meaningful for all relation kinds.
Checked column by column against a PostgreSQL 18.6 instance · Raw measurement record ↗
Columns PostgreSQL 18
pg_class| COLUMN | TYPE | DESCRIPTION |
|---|---|---|
oid |
oidNOT NULL |
Row identifier |
relname |
nameNOT NULL |
Name of the table, index, view, etc. |
relnamespace |
oidNOT NULL |
The OID of the namespace that contains this relationReferences:pg_namespace.oid |
reltype |
oidNOT NULL |
The OID of the data type that corresponds to this table's row type, if any; zero for indexes, sequences, and toast tables, which have no pg_type entryReferences:pg_type.oid |
reloftype |
oidNOT NULL |
For typed tables, the OID of the underlying composite type; zero for all other relationsReferences:pg_type.oid |
relowner |
oidNOT NULL |
Owner of the relationReferences:pg_authid.oid |
relam |
oidNOT NULL |
The access method used to access this table or index. Not meaningful if the relation is a sequence or has no on-disk file, except for partitioned tables, where, if set, it takes precedence over default_table_access_method when determining the access method to use for partitions created when one is not specified in the creation command.References:pg_am.oid |
relfilenode |
oidNOT NULL |
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 |
reltablespace |
oidNOT NULL |
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, except for partitioned tables, where this is the tablespace in which partitions will be created when one is not specified in the creation command.References:pg_tablespace.oid |
relpages |
integerNOT NULLDocumented as:int4 |
Size of the on-disk representation of this table in pages (of size BLCKSZ). This is only an estimate used by the planner. It is updated by VACUUM, ANALYZE, and a few DDL commands such as CREATE INDEX. |
reltuples |
realNOT NULLDocumented as:float4 |
Number of live rows in the table. This is only an estimate used by the planner. It is updated by VACUUM, ANALYZE, and a few DDL commands such as CREATE INDEX. If the table has never yet been vacuumed or analyzed, reltuples contains -1 indicating that the row count is unknown. |
relallvisible |
integerNOT NULLDocumented as: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 VACUUM, ANALYZE, and a few DDL commands such as CREATE INDEX. |
relallfrozen |
integerNOT NULLDocumented as:int4 |
Number of pages that are marked all-frozen in the table's visibility map. This is only an estimate used for triggering autovacuums. It can also be used along with relallvisible for scheduling manual vacuums and tuning vacuum's freezing behavior. It is updated by VACUUM, ANALYZE, and a few DDL commands such as CREATE INDEX. |
reltoastrelid |
oidNOT NULL |
OID of the TOAST table associated with this table, zero if none. The TOAST table stores large attributes “out of line” in a secondary table.References:pg_class.oid |
relhasindex |
booleanNOT NULLDocumented as:bool |
True if this is a table and it has (or recently had) any indexes |
relisshared |
booleanNOT NULLDocumented as:bool |
True if this table is shared across all databases in the cluster. Only certain system catalogs (such as pg_database) are shared. |
relpersistence |
"char"NOT NULLDocumented as:char |
p = permanent table/sequence, u = unlogged table/sequence, t = temporary table/sequence |
relkind |
"char"NOT NULLDocumented as:char |
r = ordinary table, i = index, S = sequence, t = TOAST table, v = view, m = materialized view, c = composite type, f = foreign table, p = partitioned table, I = partitioned index |
relnatts |
smallintNOT NULLDocumented as:int2 |
Number of user columns in the relation (system columns not counted). There must be this many corresponding entries in pg_attribute. See also pg_attribute.attnum. |
relchecks |
smallintNOT NULLDocumented as:int2 |
Number of CHECK constraints on the table; see pg_constraint catalog |
relhasrules |
booleanNOT NULLDocumented as:bool |
True if table has (or once had) rules; see pg_rewrite catalog |
relhastriggers |
booleanNOT NULLDocumented as:bool |
True if table has (or once had) triggers; see pg_trigger catalog |
relhassubclass |
booleanNOT NULLDocumented as:bool |
True if table or index has (or once had) any inheritance children or partitions |
relrowsecurity |
booleanNOT NULLDocumented as:bool |
True if table has row-level security enabled; see pg_policy catalog |
relforcerowsecurity |
booleanNOT NULLDocumented as:bool |
True if row-level security (when enabled) will also apply to table owner; see pg_policy catalog |
relispopulated |
booleanNOT NULLDocumented as:bool |
True if relation is populated (this is true for all relations other than some materialized views) |
relreplident |
"char"NOT NULLDocumented as:char |
Columns used to form “replica identity” for rows: d = default (primary key, if any), n = nothing, f = all columns, i = index with indisreplident set (same as nothing if the index used has been dropped) |
relispartition |
booleanNOT NULLDocumented as:bool |
True if table or index is a partition |
relrewrite |
oidNOT NULL |
For new relations being written during a DDL operation that requires a table rewrite, this contains the OID of the original relation; otherwise zero. That state is only visible internally; this field should never contain anything other than zero for a user-visible relation.References:pg_class.oid |
relfrozenxid |
xidNOT NULL |
All transaction IDs before this one have been replaced with a permanent (“frozen”) transaction ID in this table. This is used to track whether the table needs to be vacuumed in order to prevent transaction ID wraparound or to allow pg_xact to be shrunk. Zero (InvalidTransactionId) if the relation is not a table. |
relminmxid |
xidNOT NULL |
All multixact IDs before this one have been replaced by a transaction ID in this table. This is used to track whether the table needs to be vacuumed in order to prevent multixact ID wraparound or to allow pg_multixact to be shrunk. Zero (InvalidMultiXactId) if the relation is not a table. |
relacl |
aclitem[] |
Access privileges; see Section 5.8 for details |
reloptions |
text[] |
Access-method-specific options, as “keyword=value” strings |
relpartbound |
pg_node_tree |
If table is a partition (see relispartition), internal representation of the partition bound |
Columns marked "implicit" are not included in SELECT *; some early statistics views are completed from same-version source, and the extra provenance is shown in the column description.
Common system columns 6
System attributes PostgreSQL provides, normally not expanded by SELECT *. Kept separately so they are not mixed in with ordinary columns.
| Columns | Type | attnum |
|---|---|---|
tableoid | oid | -6 |
cmax | cid | -5 |
xmax | xid | -4 |
cmin | cid | -3 |
xmin | xid | -2 |
ctid | tid | -1 |
Column evolution matrix
Hover a cell for the column type9.0 is the coverage baseline; a column already present in the baseline is not marked as added. The matrix aligns columns by name, so a rename appears as the old column removed and a new column added.
Evolution timeline
Changes between adjacent majorsPostgreSQL 18 ← 17
PostgreSQL 17 ← 16
PostgreSQL 15 ← 14
PostgreSQL 14 ← 13
PostgreSQL 12 ← 11
PostgreSQL 11 ← 10
PostgreSQL 10 ← 9.6
PostgreSQL 9.5 ← 9.4
PostgreSQL 9.4 ← 9.3
PostgreSQL 9.3 ← 9.2
PostgreSQL 9.2 ← 9.1
PostgreSQL 9.1 ← 9.0
Compare any two versions
Pick two versions to see added, removed, and retyped columns. The interactive comparison needs JavaScript; the evolution timeline reads fine without it.