Movatterモバイル変換


[0]ホーム

URL:



Facebook
Postgres Pro
Facebook
Downloads
51.11. pg_class
Prev UpChapter 51. System CatalogsHome Next

51.11. pg_class#

The catalogpg_class describes tables and other objects that have columns or are otherwise similar to a table. This includes indexes (but see alsopg_index), sequences (but see alsopg_sequence), views, materialized views, composite types, and TOAST tables; seerelkind. Below, when we mean all of these kinds of objects we speak ofrelations. Not all ofpg_class's columns are meaningful for all relation kinds.

Table 51.11. pg_class Columns

Column Type

Description

oidoid

Row identifier

relnamename

Name of the table, index, view, etc.

relnamespaceoid (referencespg_namespace.oid)

The OID of the namespace that contains this relation

reltypeoid (referencespg_type.oid)

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 nopg_type entry

reloftypeoid (referencespg_type.oid)

For typed tables, the OID of the underlying composite type; zero for all other relations

relowneroid (referencespg_authid.oid)

Owner of the relation

relamoid (referencespg_am.oid)

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 overdefault_table_access_method when determining the access method to use for partitions created when one is not specified in the creation command.

relfilenodeoid

Name of the on-disk file of this relation; zero means this is amapped relation whose disk file name is determined by low-level state

reltablespaceoid (referencespg_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, except for partitioned tables, where this is the tablespace in which partitions will be created when one is not specified in the creation command.

relpagesint4

Size of the on-disk representation of this table in pages (of sizeBLCKSZ). This is only an estimate used by the planner. It is updated byVACUUM,ANALYZE, and a few DDL commands such asCREATE INDEX.

reltuplesfloat4

Number of live rows in the table. This is only an estimate used by the planner. It is updated byVACUUM,ANALYZE, and a few DDL commands such asCREATE INDEX. If the table has never yet been vacuumed or analyzed,reltuples contains-1 indicating that the row count is unknown.

relallvisibleint4

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 byVACUUM,ANALYZE, and a few DDL commands such asCREATE INDEX.

reltoastrelidoid (referencespg_class.oid)

OID of the TOAST table associated with this table, zero if none. The TOAST table stores large attributesout of line in a secondary table.

relhasindexbool

True if this is a table and it has (or recently had) any indexes

relissharedbool

True if this table is shared across all databases in the cluster. Only certain system catalogs (such aspg_database) are shared.

relpersistencechar

p = permanent table/sequence,u = unlogged table/sequence,t = temporary table/sequence

relkindchar

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

relnattsint2

Number of user columns in the relation (system columns not counted). There must be this many corresponding entries inpg_attribute. See alsopg_attribute.attnum.

relchecksint2

Number ofCHECK constraints on the table; seepg_constraint catalog

relhasrulesbool

True if table has (or once had) rules; seepg_rewrite catalog

relhastriggersbool

True if table has (or once had) triggers; seepg_trigger catalog

relhassubclassbool

True if table or index has (or once had) any inheritance children or partitions

relrowsecuritybool

True if table has row-level security enabled; seepg_policy catalog

relforcerowsecuritybool

True if row-level security (when enabled) will also apply to table owner; seepg_policy catalog

relispopulatedbool

True if relation is populated (this is true for all relations other than some materialized views)

relreplidentchar

Columns used to formreplica identity for rows:d = default (primary key, if any),n = nothing,f = all columns,i = index withindisreplident set (same as nothing if the index used has been dropped)

relispartitionbool

True if table or index is a partition

relrewriteoid (referencespg_class.oid)

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.

relfrozenxidxid

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 allowpg_xact to be shrunk. Zero (InvalidTransactionId) if the relation is not a table.

relminmxidxid

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 allowpg_multixact to be shrunk. Zero (InvalidMultiXactId) if the relation is not a table.

relaclaclitem[]

Access privileges; seeSection 5.8 for details

reloptionstext[]

Access-method-specific options, askeyword=value strings

relpartboundpg_node_tree

If table is a partition (seerelispartition), internal representation of the partition bound


Several of the Boolean flags inpg_class are maintained lazily: they are guaranteed to be true if that's the correct state, but may not be reset to false immediately when the condition is no longer true. For example,relhasindex is set byCREATE INDEX, but it is never cleared byDROP INDEX. Instead,VACUUM clearsrelhasindex if it finds the table has no indexes. This arrangement avoids race conditions and improves concurrency.


Prev Up Next
51.10. pg_cast Home 51.12. pg_collation
pdfepub
Go to PostgreSQL 17
By continuing to browse this website, you agree to the use of cookies. Go toPrivacy Policy.

[8]ページ先頭

©2009-2025 Movatter.jp