]> begriffs open source - ai-pg/blob - full-docs/txt/catalog-pg-conversion.txt
Convert HTML docs to more streamlined TXT
[ai-pg] / full-docs / txt / catalog-pg-conversion.txt
1
2 52.14. pg_conversion #
3
4    The catalog pg_conversion describes encoding conversion functions. See
5    CREATE CONVERSION for more information.
6
7    Table 52.14. pg_conversion Columns
8
9    Column Type
10
11    Description
12
13    oid oid
14
15    Row identifier
16
17    conname name
18
19    Conversion name (unique within a namespace)
20
21    connamespace oid (references pg_namespace.oid)
22
23    The OID of the namespace that contains this conversion
24
25    conowner oid (references pg_authid.oid)
26
27    Owner of the conversion
28
29    conforencoding int4
30
31    Source encoding ID (pg_encoding_to_char() can translate this number to
32    the encoding name)
33
34    contoencoding int4
35
36    Destination encoding ID (pg_encoding_to_char() can translate this
37    number to the encoding name)
38
39    conproc regproc (references pg_proc.oid)
40
41    Conversion function
42
43    condefault bool
44
45    True if this is the default conversion