33.40. routines
The viewroutines
contains 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 33.38. routines
Columns
Name | Data Type | Description |
---|---|---|
specific_catalog | sql_identifier | Name of the database containing the function (always the current database) |
specific_schema | sql_identifier | Name of the schema containing the function |
specific_name | sql_identifier | The“specific name” of the function. This is a name that uniquely identifies the function in the schema, even if the real name of the function is overloaded. The format of the specific name is not defined, it should only be used to compare it to other instances of specific routine names. |
routine_catalog | sql_identifier | Name of the database containing the function (always the current database) |
routine_schema | sql_identifier | Name of the schema containing the function |
routine_name | sql_identifier | Name of the function (might be duplicated in case of overloading) |
routine_type | character_data | AlwaysFUNCTION (In the future there might be other types of routines.) |
module_catalog | sql_identifier | Applies to a feature not available inPostgres Pro |
module_schema | sql_identifier | Applies to a feature not available inPostgres Pro |
module_name | sql_identifier | Applies to a feature not available inPostgres Pro |
udt_catalog | sql_identifier | Applies to a feature not available inPostgres Pro |
udt_schema | sql_identifier | Applies to a feature not available inPostgres Pro |
udt_name | sql_identifier | Applies to a feature not available inPostgres Pro |
data_type | character_data | Return data type of the function, if it is a built-in type, orARRAY if it is some array (in that case, see the viewelement_types ), elseUSER-DEFINED (in that case, the type is identified intype_udt_name and associated columns). |
character_maximum_length | cardinal_number | Always null, since this information is not applied to return data types inPostgres Pro |
character_octet_length | cardinal_number | Always null, since this information is not applied to return data types inPostgres Pro |
character_set_catalog | sql_identifier | Applies to a feature not available inPostgres Pro |
character_set_schema | sql_identifier | Applies to a feature not available inPostgres Pro |
character_set_name | sql_identifier | Applies to a feature not available inPostgres Pro |
collation_catalog | sql_identifier | Always null, since this information is not applied to return data types inPostgres Pro |
collation_schema | sql_identifier | Always null, since this information is not applied to return data types inPostgres Pro |
collation_name | sql_identifier | Always null, since this information is not applied to return data types inPostgres Pro |
numeric_precision | cardinal_number | Always null, since this information is not applied to return data types inPostgres Pro |
numeric_precision_radix | cardinal_number | Always null, since this information is not applied to return data types inPostgres Pro |
numeric_scale | cardinal_number | Always null, since this information is not applied to return data types inPostgres Pro |
datetime_precision | cardinal_number | Always null, since this information is not applied to return data types inPostgres Pro |
interval_type | character_data | Always null, since this information is not applied to return data types inPostgres Pro |
interval_precision | cardinal_number | Always null, since this information is not applied to return data types inPostgres Pro |
type_udt_catalog | sql_identifier | Name of the database that the return data type of the function is defined in (always the current database) |
type_udt_schema | sql_identifier | Name of the schema that the return data type of the function is defined in |
type_udt_name | sql_identifier | Name of the return data type of the function |
scope_catalog | sql_identifier | Applies to a feature not available inPostgres Pro |
scope_schema | sql_identifier | Applies to a feature not available inPostgres Pro |
scope_name | sql_identifier | Applies to a feature not available inPostgres Pro |
maximum_cardinality | cardinal_number | Always null, because arrays always have unlimited maximum cardinality inPostgres Pro |
dtd_identifier | sql_identifier | An identifier of the data type descriptor of the return data type of this function, 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.) |
routine_body | character_data | If the function is an SQL function, thenSQL , elseEXTERNAL . |
routine_definition | character_data | The source text of the function (null if the function is not owned by a currently enabled role). (According to the SQL standard, this column is only applicable ifroutine_body isSQL , but inPostgres Pro it will contain whatever source text was specified when the function was created.) |
external_name | character_data | If this function is a C function, then the external name (link symbol) of the function; else null. (This works out to be the same value that is shown inroutine_definition .) |
external_language | character_data | The language the function is written in |
parameter_style | character_data | AlwaysGENERAL (The SQL standard defines other parameter styles, which are not available inPostgres Pro.) |
is_deterministic | yes_or_no | If the function is declared immutable (called deterministic in the SQL standard), thenYES , elseNO . (You cannot query the other volatility levels available inPostgres Pro through the information schema.) |
sql_data_access | character_data | AlwaysMODIFIES , meaning that the function possibly modifies SQL data. This information is not useful forPostgres Pro. |
is_null_call | yes_or_no | If the function automatically returns null if any of its arguments are null, thenYES , elseNO . |
sql_path | character_data | Applies to a feature not available inPostgres Pro |
schema_level_routine | yes_or_no | AlwaysYES (The opposite would be a method of a user-defined type, which is a feature not available inPostgres Pro.) |
max_dynamic_result_sets | cardinal_number | Applies to a feature not available inPostgres Pro |
is_user_defined_cast | yes_or_no | Applies to a feature not available inPostgres Pro |
is_implicitly_invocable | yes_or_no | Applies to a feature not available inPostgres Pro |
security_type | character_data | If the function runs with the privileges of the current user, thenINVOKER , if the function runs with the privileges of the user who defined it, thenDEFINER . |
to_sql_specific_catalog | sql_identifier | Applies to a feature not available inPostgres Pro |
to_sql_specific_schema | sql_identifier | Applies to a feature not available inPostgres Pro |
to_sql_specific_name | sql_identifier | Applies to a feature not available inPostgres Pro |
as_locator | yes_or_no | Applies to a feature not available inPostgres Pro |
created | time_stamp | Applies to a feature not available inPostgres Pro |
last_altered | time_stamp | Applies to a feature not available inPostgres Pro |
new_savepoint_level | yes_or_no | Applies to a feature not available inPostgres Pro |
is_udt_dependent | yes_or_no | Currently alwaysNO . The alternativeYES applies to a feature not available inPostgres Pro. |
result_cast_from_data_type | character_data | Applies to a feature not available inPostgres Pro |
result_cast_as_locator | yes_or_no | Applies to a feature not available inPostgres Pro |
result_cast_char_max_length | cardinal_number | Applies to a feature not available inPostgres Pro |
result_cast_char_octet_length | character_data | Applies to a feature not available inPostgres Pro |
result_cast_char_set_catalog | sql_identifier | Applies to a feature not available inPostgres Pro |
result_cast_char_set_schema | sql_identifier | Applies to a feature not available inPostgres Pro |
result_cast_char_set_name | sql_identifier | Applies to a feature not available inPostgres Pro |
result_cast_collation_catalog | sql_identifier | Applies to a feature not available inPostgres Pro |
result_cast_collation_schema | sql_identifier | Applies to a feature not available inPostgres Pro |
result_cast_collation_name | sql_identifier | Applies to a feature not available inPostgres Pro |
result_cast_numeric_precision | cardinal_number | Applies to a feature not available inPostgres Pro |
result_cast_numeric_precision_radix | cardinal_number | Applies to a feature not available inPostgres Pro |
result_cast_numeric_scale | cardinal_number | Applies to a feature not available inPostgres Pro |
result_cast_datetime_precision | character_data | Applies to a feature not available inPostgres Pro |
result_cast_interval_type | character_data | Applies to a feature not available inPostgres Pro |
result_cast_interval_precision | cardinal_number | Applies to a feature not available inPostgres Pro |
result_cast_type_udt_catalog | sql_identifier | Applies to a feature not available inPostgres Pro |
result_cast_type_udt_schema | sql_identifier | Applies to a feature not available inPostgres Pro |
result_cast_type_udt_name | sql_identifier | Applies to a feature not available inPostgres Pro |
result_cast_scope_catalog | sql_identifier | Applies to a feature not available inPostgres Pro |
result_cast_scope_schema | sql_identifier | Applies to a feature not available inPostgres Pro |
result_cast_scope_name | sql_identifier | Applies to a feature not available inPostgres Pro |
result_cast_maximum_cardinality | cardinal_number | Applies to a feature not available inPostgres Pro |
result_cast_dtd_identifier | sql_identifier | Applies to a feature not available inPostgres Pro |