]> begriffs open source - ai-pg/blob - full-docs/txt/view-pg-indexes.txt
Convert HTML docs to more streamlined TXT
[ai-pg] / full-docs / txt / view-pg-indexes.txt
1
2 53.12. pg_indexes #
3
4    The view pg_indexes provides access to useful information about each
5    index in the database.
6
7    Table 53.12. pg_indexes Columns
8
9    Column Type
10
11    Description
12
13    schemaname name (references pg_namespace.nspname)
14
15    Name of schema containing table and index
16
17    tablename name (references pg_class.relname)
18
19    Name of table the index is for
20
21    indexname name (references pg_class.relname)
22
23    Name of index
24
25    tablespace name (references pg_tablespace.spcname)
26
27    Name of tablespace containing index (null if default for database)
28
29    indexdef text
30
31    Index definition (a reconstructed CREATE INDEX command)