]> begriffs open source - ai-pg/blob - full-docs/txt/catalog-pg-transform.txt
Convert HTML docs to more streamlined TXT
[ai-pg] / full-docs / txt / catalog-pg-transform.txt
1
2 52.57. pg_transform #
3
4    The catalog pg_transform stores information about transforms, which are
5    a mechanism to adapt data types to procedural languages. See CREATE
6    TRANSFORM for more information.
7
8    Table 52.57. pg_transform Columns
9
10    Column Type
11
12    Description
13
14    oid oid
15
16    Row identifier
17
18    trftype oid (references pg_type.oid)
19
20    OID of the data type this transform is for
21
22    trflang oid (references pg_language.oid)
23
24    OID of the language this transform is for
25
26    trffromsql regproc (references pg_proc.oid)
27
28    The OID of the function to use when converting the data type for input
29    to the procedural language (e.g., function parameters). Zero is stored
30    if the default behavior should be used.
31
32    trftosql regproc (references pg_proc.oid)
33
34    The OID of the function to use when converting output from the
35    procedural language (e.g., return values) to the data type. Zero is
36    stored if the default behavior should be used.