From b985d48779146b7ba969b0963614ad7683589bc8 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 20 Nov 2011 23:50:27 -0500 Subject: Further code review for range types patch. Fix some bugs in coercion logic and pg_dump; more comment cleanup; minor cosmetic improvements. --- doc/src/sgml/datatype.sgml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'doc/src') diff --git a/doc/src/sgml/datatype.sgml b/doc/src/sgml/datatype.sgml index fe59a1c7763..152ef2f0378 100644 --- a/doc/src/sgml/datatype.sgml +++ b/doc/src/sgml/datatype.sgml @@ -4506,6 +4506,12 @@ SELECT * FROM pg_attribute Indicates that a function accepts any input data type. + + anyelement + Indicates that a function accepts any data type + (see ). + + anyarray Indicates that a function accepts any array data type @@ -4513,8 +4519,8 @@ SELECT * FROM pg_attribute - anyelement - Indicates that a function accepts any data type + anynonarray + Indicates that a function accepts any non-array data type (see ). @@ -4532,12 +4538,6 @@ SELECT * FROM pg_attribute ). - - anynonarray - Indicates that a function accepts any non-array data type - (see ). - - cstring Indicates that a function accepts or returns a null-terminated C string. @@ -4595,9 +4595,9 @@ SELECT * FROM pg_attribute languages all forbid use of a pseudo-type as argument type, and allow only void and record as a result type (plus trigger when the function is used as a trigger). Some also - support polymorphic functions using the types anyarray, - anyelement, anyenum, anyrange, and - anynonarray. + support polymorphic functions using the types anyelement, + anyarray, anynonarray, anyenum, and + anyrange. -- cgit v1.2.3