]> begriffs open source - ai-pg/blob - full-docs/txt/infoschema-transforms.txt
Convert HTML docs to more streamlined TXT
[ai-pg] / full-docs / txt / infoschema-transforms.txt
1
2 35.55. transforms #
3
4    The view transforms contains information about the transforms defined
5    in the current database. More precisely, it contains a row for each
6    function contained in a transform (the “from SQL” or “to SQL”
7    function).
8
9    Table 35.53. transforms Columns
10
11    Column Type
12
13    Description
14
15    udt_catalog sql_identifier
16
17    Name of the database that contains the type the transform is for
18    (always the current database)
19
20    udt_schema sql_identifier
21
22    Name of the schema that contains the type the transform is for
23
24    udt_name sql_identifier
25
26    Name of the type the transform is for
27
28    specific_catalog sql_identifier
29
30    Name of the database containing the function (always the current
31    database)
32
33    specific_schema sql_identifier
34
35    Name of the schema containing the function
36
37    specific_name sql_identifier
38
39    The “specific name” of the function. See Section 35.45 for more
40    information.
41
42    group_name sql_identifier
43
44    The SQL standard allows defining transforms in “groups”, and selecting
45    a group at run time. PostgreSQL does not support this. Instead,
46    transforms are specific to a language. As a compromise, this field
47    contains the language the transform is for.
48
49    transform_type character_data
50
51    FROM SQL or TO SQL