From: Tom Lane Date: Fri, 28 Jan 2005 23:13:26 +0000 (+0000) Subject: Add documentation for format_type(), which somehow escaped it before. X-Git-Tag: REL8_0_1~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d8595c9850fda5d1b40b0dc84bd818d80dc1d37e;p=thirdparty%2Fpostgresql.git Add documentation for format_type(), which somehow escaped it before. --- diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index d427d5026a3..927d72d14b3 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -1,5 +1,5 @@ @@ -8505,6 +8505,10 @@ SELECT pg_type_is_visible('myschema.widget'::regtype); this way — if the name can be recognized at all, it must be visible. + + format_type + + pg_get_viewdef @@ -8554,6 +8558,11 @@ SELECT pg_type_is_visible('myschema.widget'::regtype); + + format_type(type_oid, typemod) + text + get SQL name of a data type + pg_get_viewdef(view_name) text @@ -8643,6 +8652,12 @@ SELECT pg_type_is_visible('myschema.widget'::regtype); + + format_type returns the SQL name of a data type that + is identified by its type OID and possibly a type modifier. Pass NULL + for the type modifier if no specific modifier is known. + + pg_get_viewdef, pg_get_ruledef,