pg_conversion

The pg_conversion system catalog table describes the available encoding conversion procedures as defined by CREATE CONVERSION.

Table 1. pg_catalog.pg_conversion

columntypereferencesdescription
connamename Conversion name (unique within a namespace).
connamespaceoidpg_namespace.oidThe OID of the namespace (schema) that contains this conversion.
conowneroidpg_authid.oidOwner of the conversion.
conforencodinginteger Source encoding ID.
contoencodinginteger Destination encoding ID.
conprocregprocpg_proc.oidConversion procedure.
condefaultboolean True if this is the default conversion.