]> begriffs open source - ai-pg/blob - full-docs/txt/infoschema-routine-column-usage.txt
Convert HTML docs to more streamlined TXT
[ai-pg] / full-docs / txt / infoschema-routine-column-usage.txt
1
2 35.40. routine_column_usage #
3
4    The view routine_column_usage identifies all columns that are used by a
5    function or procedure, either in the SQL body or in parameter default
6    expressions. (This only works for unquoted SQL bodies, not quoted
7    bodies or functions in other languages.) A column is only included if
8    its table is owned by a currently enabled role.
9
10    Table 35.38. routine_column_usage Columns
11
12    Column Type
13
14    Description
15
16    specific_catalog sql_identifier
17
18    Name of the database containing the function (always the current
19    database)
20
21    specific_schema sql_identifier
22
23    Name of the schema containing the function
24
25    specific_name sql_identifier
26
27    The “specific name” of the function. See Section 35.45 for more
28    information.
29
30    routine_catalog sql_identifier
31
32    Name of the database containing the function (always the current
33    database)
34
35    routine_schema sql_identifier
36
37    Name of the schema containing the function
38
39    routine_name sql_identifier
40
41    Name of the function (might be duplicated in case of overloading)
42
43    table_catalog sql_identifier
44
45    Name of the database that contains the table that is used by the
46    function (always the current database)
47
48    table_schema sql_identifier
49
50    Name of the schema that contains the table that is used by the function
51
52    table_name sql_identifier
53
54    Name of the table that is used by the function
55
56    column_name sql_identifier
57
58    Name of the column that is used by the function