pg_conversion
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
column |
type |
references |
description |
---|---|---|---|
|
oid |
The object ID |
|
|
name |
Conversion name (unique within a namespace). |
|
|
oid |
pg_namespace.oid |
The OID of the namespace (schema) that contains this conversion. |
|
oid |
pg_authid.oid |
Owner of the conversion. |
|
integer |
Source encoding ID. |
|
|
integer |
Destination encoding ID. |
|
|
regproc |
pg_proc.oid |
Conversion procedure. |
|
boolean |
True if this is the default conversion. |