Movatterモバイル変換


[0]ホーム

URL:



Facebook
Postgres Pro
Facebook
Downloads
49.26. pg_index
Prev UpChapter 49. System CatalogsHome Next

49.26. pg_index

The catalogpg_index contains part of the information about indexes. The rest is mostly inpg_class.

Table 49.26. pg_index Columns

NameTypeReferencesDescription
indexrelidoidpg_class.oidThe OID of thepg_class entry for this index
indrelidoidpg_class.oidThe OID of thepg_class entry for the table this index is for
indnattsint2 The number of columns in the index (duplicatespg_class.relnatts)
indnkeyattsint2 The number of key columns in the index. "Key columns" are ordinary index columns in contrast with "included" columns.
indisuniquebool If true, this is a unique index
indisprimarybool If true, this index represents the primary key of the table (indisunique should always be true when this is true)
indisexclusionbool If true, this index supports an exclusion constraint
indimmediatebool If true, the uniqueness check is enforced immediately on insertion (irrelevant ifindisunique is not true)
indisclusteredbool If true, the table was last clustered on this index
indisvalidbool  If true, the index is currently valid for queries. False means the index is possibly incomplete: it must still be modified byINSERT/UPDATE operations, but it cannot safely be used for queries. If it is unique, the uniqueness property is not guaranteed true either.
indcheckxminbool  If true, queries must not use the index until thexmin of thispg_index row is below theirTransactionXmin event horizon, because the table may contain broken HOT chains with incompatible rows that they can see
indisreadybool  If true, the index is currently ready for inserts. False means the index must be ignored byINSERT/UPDATE operations.
indislivebool  If false, the index is in process of being dropped, and should be ignored for all purposes (including HOT-safety decisions)
indisreplidentbool  If true this index has been chosen asreplica identity usingALTER TABLE ... REPLICA IDENTITY USING INDEX ...
indkeyint2vectorpg_attribute.attnum This is an array ofindnatts values that indicate which table columns this index indexes. For example a value of1 3 would mean that the first and the third table columns make up the index key. A zero in this array indicates that the corresponding index attribute is an expression over the table columns, rather than a simple column reference.
indcollationoidvectorpg_collation.oid For each column in the index key, this contains the OID of the collation to use for the index.
indclassoidvectorpg_opclass.oid For each column in the index key, this contains the OID of the operator class to use. Seepg_opclass for details.
indoptionint2vector  This is an array ofindnatts values that store per-column flag bits. The meaning of the bits is defined by the index's access method.
indexprspg_node_tree  Expression trees (innodeToString() representation) for index attributes that are not simple column references. This is a list with one element for each zero entry inindkey. Null if all index attributes are simple references.
indpredpg_node_tree  Expression tree (innodeToString() representation) for partial index predicate. Null if not a partial index.


Prev Up Next
49.25. pg_foreign_table Home 49.27. pg_inherits
pdfepub
Go to Postgres Pro Standard 9.5
By continuing to browse this website, you agree to the use of cookies. Go toPrivacy Policy.

[8]ページ先頭

©2009-2025 Movatter.jp