35.32. parameters

Представление parameters содержит информацию о параметрах (аргументах) всех функций в текущей базе данных. В нём отражаются только функции, к которым имеет доступ текущий пользователь (являясь владельцем или имея некоторые права).

Таблица 35.30. Столбцы parameters

ИмяТип данныхОписание
specific_catalogsql_identifierИмя базы данных, содержащей функцию (всегда текущая база)
specific_schemasql_identifierИмя схемы, содержащей функцию
specific_namesql_identifier«Однозначное имя» функции. Подробнее оно описано в Разделе 35.40.
ordinal_positioncardinal_numberПорядковый номер параметра в списке аргументов функции (нумерация начинается с 1)
parameter_modecharacter_dataIN для входного параметра, OUT для выходного, INOUT — для входного и выходного параметра.
is_resultyes_or_noОтносится к функциональности, отсутствующей в Postgres Pro
as_locatoryes_or_noОтносится к функциональности, отсутствующей в Postgres Pro
parameter_namesql_identifierИмя параметра, либо NULL, если параметр безымянный
data_typecharacter_dataТип данных параметра, если это встроенный тип, либо ARRAY, если это массив (в этом случае обратитесь к представлению element_types), иначе — USER-DEFINED (в этом случае тип определяется в udt_name и связанных столбцах).
character_maximum_lengthcardinal_numberВсегда NULL, так как эта информация не применима к типам параметров в Postgres Pro
character_octet_lengthcardinal_numberВсегда NULL, так как эта информация не применима к типам параметров в Postgres Pro
character_set_catalogsql_identifierОтносится к функциональности, отсутствующей в Postgres Pro
character_set_schemasql_identifierОтносится к функциональности, отсутствующей в Postgres Pro
character_set_namesql_identifierОтносится к функциональности, отсутствующей в Postgres Pro
collation_catalogsql_identifierВсегда NULL, так как эта информация не применима к типам параметров в Postgres Pro
collation_schemasql_identifierВсегда NULL, так как эта информация не применима к типам параметров в Postgres Pro
collation_namesql_identifierВсегда NULL, так как эта информация не применима к типам параметров в Postgres Pro
numeric_precisioncardinal_numberВсегда NULL, так как эта информация не применима к типам параметров в Postgres Pro
numeric_precision_radixcardinal_numberВсегда NULL, так как эта информация не применима к типам параметров в Postgres Pro
numeric_scalecardinal_numberВсегда NULL, так как эта информация не применима к типам параметров в Postgres Pro
datetime_precisioncardinal_numberВсегда NULL, так как эта информация не применима к типам параметров в Postgres Pro
interval_typecharacter_dataВсегда NULL, так как эта информация не применима к типам параметров в Postgres Pro
interval_precisioncardinal_numberВсегда NULL, так как эта информация не применима к типам параметров в Postgres Pro
udt_catalogsql_identifierИмя базы данных, в которой определён тип данных параметра (всегда текущая база)
udt_schemasql_identifierИмя схемы, в которой определён тип данных параметра
udt_namesql_identifierИмя типа данных параметра
scope_catalogsql_identifierОтносится к функциональности, отсутствующей в Postgres Pro
scope_schemasql_identifierОтносится к функциональности, отсутствующей в Postgres Pro
scope_namesql_identifierОтносится к функциональности, отсутствующей в Postgres Pro
maximum_cardinalitycardinal_numberВсегда NULL, так как массивы имеют неограниченную максимальную ёмкость в Postgres Pro
dtd_identifiersql_identifierИдентификатор дескриптора типа данных параметра, уникальный среди всех дескрипторов типов, относящихся к функции. Он в основном полезен для соединения с другими экземплярами таких идентификаторов. (Конкретный формат идентификатора не определён и не гарантируется, что он останется неизменным в будущих версиях.)
parameter_defaultcharacter_dataВыражение параметра по умолчанию, либо NULL, если такого выражения нет или функция не принадлежит текущей активной роли.

35.32. parameters

The view parameters contains information about the parameters (arguments) of all functions in the current database. Only those functions are shown that the current user has access to (by way of being the owner or having some privilege).

Table 35.30. parameters Columns

NameData TypeDescription
specific_catalogsql_identifierName of the database containing the function (always the current database)
specific_schemasql_identifierName of the schema containing the function
specific_namesql_identifier The specific name of the function. See Section 35.40 for more information.
ordinal_positioncardinal_number Ordinal position of the parameter in the argument list of the function (count starts at 1)
parameter_modecharacter_dataIN for input parameter, OUT for output parameter, and INOUT for input/output parameter.
is_resultyes_or_noApplies to a feature not available in Postgres Pro
as_locatoryes_or_noApplies to a feature not available in Postgres Pro
parameter_namesql_identifierName of the parameter, or null if the parameter has no name
data_typecharacter_data Data type of the parameter, if it is a built-in type, or ARRAY if it is some array (in that case, see the view element_types), else USER-DEFINED (in that case, the type is identified in udt_name and associated columns).
character_maximum_lengthcardinal_numberAlways null, since this information is not applied to parameter data types in Postgres Pro
character_octet_lengthcardinal_numberAlways null, since this information is not applied to parameter data types in Postgres Pro
character_set_catalogsql_identifierApplies to a feature not available in Postgres Pro
character_set_schemasql_identifierApplies to a feature not available in Postgres Pro
character_set_namesql_identifierApplies to a feature not available in Postgres Pro
collation_catalogsql_identifierAlways null, since this information is not applied to parameter data types in Postgres Pro
collation_schemasql_identifierAlways null, since this information is not applied to parameter data types in Postgres Pro
collation_namesql_identifierAlways null, since this information is not applied to parameter data types in Postgres Pro
numeric_precisioncardinal_numberAlways null, since this information is not applied to parameter data types in Postgres Pro
numeric_precision_radixcardinal_numberAlways null, since this information is not applied to parameter data types in Postgres Pro
numeric_scalecardinal_numberAlways null, since this information is not applied to parameter data types in Postgres Pro
datetime_precisioncardinal_numberAlways null, since this information is not applied to parameter data types in Postgres Pro
interval_typecharacter_dataAlways null, since this information is not applied to parameter data types in Postgres Pro
interval_precisioncardinal_numberAlways null, since this information is not applied to parameter data types in Postgres Pro
udt_catalogsql_identifier Name of the database that the data type of the parameter is defined in (always the current database)
udt_schemasql_identifier Name of the schema that the data type of the parameter is defined in
udt_namesql_identifier Name of the data type of the parameter
scope_catalogsql_identifierApplies to a feature not available in Postgres Pro
scope_schemasql_identifierApplies to a feature not available in Postgres Pro
scope_namesql_identifierApplies to a feature not available in Postgres Pro
maximum_cardinalitycardinal_numberAlways null, because arrays always have unlimited maximum cardinality in Postgres Pro
dtd_identifiersql_identifier An identifier of the data type descriptor of the parameter, unique among the data type descriptors pertaining to the function. This is mainly useful for joining with other instances of such identifiers. (The specific format of the identifier is not defined and not guaranteed to remain the same in future versions.)
parameter_defaultcharacter_data The default expression of the parameter, or null if none or if the function is not owned by a currently enabled role.

FAQ