54.100. pg_views

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

Таблица 54.101. Столбцы pg_views

Тип столбца

Описание

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

Имя схемы, содержащей представление

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

Имя представления

viewowner name (ссылается на pg_authid.rolname)

Имя владельца представления

definition text

Определение представления (реконструированный запрос SELECT)


49.14. pg_conversion

The catalog pg_conversion describes encoding conversion procedures. See CREATE CONVERSION for more information.

Table 49.14. pg_conversion Columns

NameTypeReferencesDescription
oidoid Row identifier (hidden attribute; must be explicitly selected)
connamename Conversion name (unique within a namespace)
connamespaceoidpg_namespace.oid The OID of the namespace that contains this conversion
conowneroidpg_authid.oidOwner of the conversion
conforencodingint4 Source encoding ID
contoencodingint4 Destination encoding ID
conprocregprocpg_proc.oidConversion procedure
condefaultbool True if this is the default conversion