53.11. pg_indexes

Представление pg_indexes даёт доступ к полезной информации обо всех индексах в базе данных.

Таблица 53.11. Столбцы pg_indexes

Тип столбца

Описание

schemaname name (ссылается на pg_namespace.nspname)

Имя схемы, содержащей таблицу и индекс

tablename name (ссылается на pg_class.relname)

Имя таблицы, для которой создан индекс

indexname name (ссылается на pg_class.relname)

Имя индекса

tablespace name (ссылается на pg_tablespace.spcname)

Имя табличного пространства, содержащего индекс (NULL, если это пространство по умолчанию)

indexdef text

Определение индекса (реконструированная команда CREATE INDEX)


53.11. pg_indexes

The view pg_indexes provides access to useful information about each index in the database.

Table 53.11. pg_indexes Columns

Column Type

Description

schemaname name (references pg_namespace.nspname)

Name of schema containing table and index

tablename name (references pg_class.relname)

Name of table the index is for

indexname name (references pg_class.relname)

Name of index

tablespace name (references pg_tablespace.spcname)

Name of tablespace containing index (null if default for database)

indexdef text

Index definition (a reconstructed CREATE INDEX command)