52.57. pg_transform
pg_transform
The catalog pg_transform stores information about transforms, which are a mechanism to adapt data types to procedural languages. See CREATE TRANSFORM for more information.
Column Type Description |
|---|
oid Row identifier |
trftype OID of the data type this transform is for |
trflang OID of the language this transform is for |
trffromsql The OID of the function to use when converting the data type for input to the procedural language (e.g., function parameters). Zero is stored if the default behavior should be used. |
trftosql The OID of the function to use when converting output from the procedural language (e.g., return values) to the data type. Zero is stored if the default behavior should be used. |
: pg_transform Columns