39.24. element_types

Представление element_types показывает дескрипторы типов элементов массива. Когда столбец таблицы, атрибут составного типа, параметр или результат функции объявлены с типом массива, соответствующее представление информационной схемы будет содержать только ARRAY в столбце data_type. Чтобы получить информацию о типе элемента массива, можно связать соответствующее представление с данным. Например, просмотреть столбцы таблицы с типами данных и типами элементов массива (если это применимо) можно так:

SELECT c.column_name, c.data_type, e.data_type AS element_type
FROM information_schema.columns c LEFT JOIN information_schema.element_types e
     ON ((c.table_catalog, c.table_schema, c.table_name, 'TABLE', c.dtd_identifier)
       = (e.object_catalog, e.object_schema, e.object_name, e.object_type, e.collection_type_identifier))
WHERE c.table_schema = '...' AND c.table_name = '...'
ORDER BY c.ordinal_position;

Это представление показывает только те объекты, к которым имеет доступ текущий пользователь, являясь владельцем или имея некоторые права.

Таблица 39.22. Столбцы element_types

Тип столбца

Описание

object_catalog sql_identifier

Имя базы данных, содержащей объект, связанный с описываемым массивом (всегда текущая база)

object_schema sql_identifier

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

object_name sql_identifier

Имя объекта, связанного с описываемым массивом

object_type character_data

Тип объекта, связанного с описываемым массивом: TABLE (массив задействован в столбце этой таблицы), USER-DEFINED TYPE (массив задействован в атрибуте составного типа), DOMAIN (массив задействован в домене), ROUTINE (массив задействован в типе данных параметра или результата функции).

collection_type_identifier sql_identifier

Идентификатор дескриптора типа данных для описываемого массива. Его можно использовать для соединения со столбцами dtd_identifier других представлений информационной схемы.

data_type character_data

Тип данных элементов массива, если это встроенный тип, либо USER-DEFINED (в этом случае тип определяется в udt_name и связанных столбцах).

character_maximum_length cardinal_number

Всегда NULL, так как эта информация неприменима к типам элементов массива в Postgres Pro

character_octet_length cardinal_number

Всегда NULL, так как эта информация неприменима к типам элементов массива в Postgres Pro

character_set_catalog sql_identifier

Относится к функциональности, отсутствующей в Postgres Pro

character_set_schema sql_identifier

Относится к функциональности, отсутствующей в Postgres Pro

character_set_name sql_identifier

Относится к функциональности, отсутствующей в Postgres Pro

collation_catalog sql_identifier

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

collation_schema sql_identifier

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

collation_name sql_identifier

Имя правила сортировки типа элемента, либо NULL, если это правило по умолчанию или тип элемента несортируемый

numeric_precision cardinal_number

Всегда NULL, так как эта информация неприменима к типам элементов массива в Postgres Pro

numeric_precision_radix cardinal_number

Всегда NULL, так как эта информация неприменима к типам элементов массива в Postgres Pro

numeric_scale cardinal_number

Всегда NULL, так как эта информация неприменима к типам элементов массива в Postgres Pro

datetime_precision cardinal_number

Всегда NULL, так как эта информация неприменима к типам элементов массива в Postgres Pro

interval_type character_data

Всегда NULL, так как эта информация неприменима к типам элементов массива в Postgres Pro

interval_precision cardinal_number

Всегда NULL, так как эта информация неприменима к типам элементов массива в Postgres Pro

domain_default character_data

Ещё не реализовано

udt_catalog sql_identifier

Имя базы данных, в которой определён тип данных элемента (всегда текущая база)

udt_schema sql_identifier

Имя схемы, в которой определён тип данных элемента

udt_name sql_identifier

Имя типа данных элемента

scope_catalog sql_identifier

Относится к функциональности, отсутствующей в Postgres Pro

scope_schema sql_identifier

Относится к функциональности, отсутствующей в Postgres Pro

scope_name sql_identifier

Относится к функциональности, отсутствующей в Postgres Pro

maximum_cardinality cardinal_number

Всегда NULL, так как массивы имеют неограниченную максимальную ёмкость в Postgres Pro

dtd_identifier sql_identifier

Идентификатор дескриптора типа данных элемента. В настоящее время бесполезен.


39.24. element_types

The view element_types contains the data type descriptors of the elements of arrays. When a table column, composite-type attribute, domain, function parameter, or function return value is defined to be of an array type, the respective information schema view only contains ARRAY in the column data_type. To obtain information on the element type of the array, you can join the respective view with this view. For example, to show the columns of a table with data types and array element types, if applicable, you could do:

SELECT c.column_name, c.data_type, e.data_type AS element_type
FROM information_schema.columns c LEFT JOIN information_schema.element_types e
     ON ((c.table_catalog, c.table_schema, c.table_name, 'TABLE', c.dtd_identifier)
       = (e.object_catalog, e.object_schema, e.object_name, e.object_type, e.collection_type_identifier))
WHERE c.table_schema = '...' AND c.table_name = '...'
ORDER BY c.ordinal_position;

This view only includes objects that the current user has access to, by way of being the owner or having some privilege.

Table 39.22. element_types Columns

Column Type

Description

object_catalog sql_identifier

Name of the database that contains the object that uses the array being described (always the current database)

object_schema sql_identifier

Name of the schema that contains the object that uses the array being described

object_name sql_identifier

Name of the object that uses the array being described

object_type character_data

The type of the object that uses the array being described: one of TABLE (the array is used by a column of that table), USER-DEFINED TYPE (the array is used by an attribute of that composite type), DOMAIN (the array is used by that domain), ROUTINE (the array is used by a parameter or the return data type of that function).

collection_type_identifier sql_identifier

The identifier of the data type descriptor of the array being described. Use this to join with the dtd_identifier columns of other information schema views.

data_type character_data

Data type of the array elements, if it is a built-in type, else USER-DEFINED (in that case, the type is identified in udt_name and associated columns).

character_maximum_length cardinal_number

Always null, since this information is not applied to array element data types in Postgres Pro

character_octet_length cardinal_number

Always null, since this information is not applied to array element data types in Postgres Pro

character_set_catalog sql_identifier

Applies to a feature not available in Postgres Pro

character_set_schema sql_identifier

Applies to a feature not available in Postgres Pro

character_set_name sql_identifier

Applies to a feature not available in Postgres Pro

collation_catalog sql_identifier

Name of the database containing the collation of the element type (always the current database), null if default or the data type of the element is not collatable

collation_schema sql_identifier

Name of the schema containing the collation of the element type, null if default or the data type of the element is not collatable

collation_name sql_identifier

Name of the collation of the element type, null if default or the data type of the element is not collatable

numeric_precision cardinal_number

Always null, since this information is not applied to array element data types in Postgres Pro

numeric_precision_radix cardinal_number

Always null, since this information is not applied to array element data types in Postgres Pro

numeric_scale cardinal_number

Always null, since this information is not applied to array element data types in Postgres Pro

datetime_precision cardinal_number

Always null, since this information is not applied to array element data types in Postgres Pro

interval_type character_data

Always null, since this information is not applied to array element data types in Postgres Pro

interval_precision cardinal_number

Always null, since this information is not applied to array element data types in Postgres Pro

domain_default character_data

Not yet implemented

udt_catalog sql_identifier

Name of the database that the data type of the elements is defined in (always the current database)

udt_schema sql_identifier

Name of the schema that the data type of the elements is defined in

udt_name sql_identifier

Name of the data type of the elements

scope_catalog sql_identifier

Applies to a feature not available in Postgres Pro

scope_schema sql_identifier

Applies to a feature not available in Postgres Pro

scope_name sql_identifier

Applies to a feature not available in Postgres Pro

maximum_cardinality cardinal_number

Always null, because arrays always have unlimited maximum cardinality in Postgres Pro

dtd_identifier sql_identifier

An identifier of the data type descriptor of the element. This is currently not useful.


FAQ