From 311bcfc6b3acdd6fd152798c7f287ddf74fa2a98 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 16 Apr 2024 21:46:48 +0200 Subject: Adding upstream version 15.4. 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..31564a5 --- /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