Документация по PostgreSQL 9.4.1 | |||
---|---|---|---|
Пред. | Уровень выше | Глава 34. Информационная схема | След. |
34.13. column_options
Представление column_options показывает все параметры, определённые для колонок сторонней таблицы в текущей базе данных. В нём отражаются только те колонки сторонних таблиц, к которым имеет доступ текущий пользователь (являясь их владельцем или имея некоторые права).
Таблица 34-11. Колонки column_options
Имя | Тип данных | Описание |
---|---|---|
table_catalog | sql_identifier | Имя базы данных, содержащей стороннюю таблицу (всегда текущая база) |
table_schema | sql_identifier | Имя схемы, содержащей стороннюю таблицу |
table_name | sql_identifier | Имя сторонней таблицы |
column_name | sql_identifier | Имя колонки |
option_name | sql_identifier | Имя параметра |
option_value | character_data | Значение параметра |
Пред. | Начало | След. |
column_domain_usage | Уровень выше | column_privileges |
49.14. pg_conversion
The catalog pg_conversion
describes encoding conversion procedures. See CREATE CONVERSION for more information.
Table 49.14. pg_conversion
Columns
Name | Type | References | Description |
---|---|---|---|
oid | oid | Row identifier (hidden attribute; must be explicitly selected) | |
conname | name | Conversion name (unique within a namespace) | |
connamespace | oid |
| The OID of the namespace that contains this conversion |
conowner | oid |
| Owner of the conversion |
conforencoding | int4 | Source encoding ID | |
contoencoding | int4 | Destination encoding ID | |
conproc | regproc |
| Conversion procedure |
condefault | bool | True if this is the default conversion |