From 5e45211a64149b3c659b90ff2de6fa982a5a93ed Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 14:17:33 +0200 Subject: Adding upstream version 15.5. Signed-off-by: Daniel Baumann --- doc/src/sgml/html/catalog-pg-conversion.html | 56 ++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 doc/src/sgml/html/catalog-pg-conversion.html (limited to 'doc/src/sgml/html/catalog-pg-conversion.html') diff --git a/doc/src/sgml/html/catalog-pg-conversion.html b/doc/src/sgml/html/catalog-pg-conversion.html new file mode 100644 index 0000000..953bf19 --- /dev/null +++ b/doc/src/sgml/html/catalog-pg-conversion.html @@ -0,0 +1,56 @@ + +53.14. pg_conversion

53.14. pg_conversion

+ The catalog pg_conversion describes + encoding conversion functions. See CREATE CONVERSION + for more information. +

Table 53.14. pg_conversion Columns

+ Column Type +

+

+ Description +

+ oid oid +

+

+ Row identifier +

+ conname name +

+

+ Conversion name (unique within a namespace) +

+ connamespace oid + (references pg_namespace.oid) +

+

+ The OID of the namespace that contains this conversion +

+ conowner oid + (references pg_authid.oid) +

+

+ Owner of the conversion +

+ conforencoding int4 +

+

+ Source encoding ID (pg_encoding_to_char() + can translate this number to the encoding name) +

+ contoencoding int4 +

+

+ Destination encoding ID (pg_encoding_to_char() + can translate this number to the encoding name) +

+ conproc regproc + (references pg_proc.oid) +

+

+ Conversion function +

+ condefault bool +

+

+ True if this is the default conversion +


\ No newline at end of file -- cgit v1.2.3