Skip to content

pg_conversion

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

columntypereferencesdescription
oidoidThe object ID
connamenameConversion name (unique within a namespace)
connamespaceoidpg_namespace.oidThe OID of the namespace (schema) that contains this conversion
conowneroidpg_authid.oidOwner of the conversion
conforencodingintegerSource encoding ID
contoencodingintegerDestination encoding ID
conprocregprocpg_proc.oidConversion procedure
condefaultbooleanTrue if this is the default conversion

Parent topic: System Catalogs Definitions