The catalog pg_conversion describes encoding conversion functions. See CREATE CONVERSION for more information.
| Column | Type | Description |
|---|---|---|
oid | oid | Row identifier. |
conname | name | Conversion name (unique within a namespace). |
connamespace | oid | The OID of the namespace that contains this conversion (references pg_namespace.oid). |
conowner | oid | Owner of the conversion (references pg_authid.oid). |
conforencoding | int4 | Source encoding ID. Use pg_encoding_to_char() to translate this number to the encoding name. |
contoencoding | int4 | Destination encoding ID. Use pg_encoding_to_char() to translate this number to the encoding name. |
conproc | regproc | Conversion function (references pg_proc.oid). |
condefault | bool | True if this is the default conversion. |