Text Size: Normal / Large

3.16. pg_index

pg_index contains part of the information about indexes. The rest is mostly in pg_class.

Table 3-16. pg_index Columns

NameTypeReferencesDescription
indexrelidoidpg_class.oidThe OID of the pg_class entry for this index
indrelidoidpg_class.oidThe OID of the pg_class entry for the table this index is for
indprocregprocpg_proc.oidThe function's OID if this is a functional index, else zero
indkeyint2vectorpg_attribute.attnum This is a vector (array) of up to INDEX_MAX_KEYS values that indicate which table columns this index pertains to. For example a value of 1 3 would mean that the first and the third column make up the index key. For a functional index, these columns are the inputs to the function, and the function's return value is the index key.
indclassoidvectorpg_opclass.oid For each column in the index key this contains a reference to the "operator class" to use. See pg_opclass for details.
indisclusteredbool If true, the table was last clustered on this index.
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.)
indreferenceoid unused
indpredtext Expression tree (in the form of a nodeToString representation) for partial index predicate. Empty string if not a partial index.

User Comments

No comments could be found for this page.

Add Comment

Please use this form to add your own comments regarding your experience with particular features of PostgreSQL, clarifications of the documentation, or hints for other users. Please note, this is not a support forum, and your IP address will be logged. If you have a question or need help, please see the faq, try a mailing list, or join us on IRC. Note that submissions containing URLs or other keywords commonly found in 'spam' comments may be silently discarded. Please contact the webmaster if you think this is happening to you in error.

In order to submit a comment, you must have a community account.

* Comment
 

* denotes required field

Privacy Policy | Project hosted by hub.org | Designed by tinysofa
Copyright © 1996 – 2007 PostgreSQL Global Development Group