Mention that pg_type_is_visible is used for domains as well.
authorBruce Momjian
Thu, 11 Sep 2003 17:26:20 +0000 (17:26 +0000)
committerBruce Momjian
Thu, 11 Sep 2003 17:26:20 +0000 (17:26 +0000)
Christopher Kings-Lynne

doc/src/sgml/func.sgml

index e53a9c2a943f5f97281f209528b19e6520087a46..1d12faca1df7f178250be5590b3eb1aac9ec2ace 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -6873,7 +6873,7 @@ SELECT relname FROM pg_class WHERE pg_table_is_visible(oid);
        pg_type_is_visible(type_oid)
        
        boolean
-       is type visible in search path
+       is type (or domain) visible in search path
       
       
        pg_function_is_visible(function_oid)
@@ -6930,7 +6930,7 @@ SELECT relname FROM pg_class WHERE pg_table_is_visible(oid);
    pg_operator_is_visible,
    pg_opclass_is_visible, and
    pg_conversion_is_visible perform the same sort of
-   visibility check for types, functions, operators, operator classes
+   visibility check for types (and domains), functions, operators, operator classes
    and conversions, respectively.  For functions and operators, an object in
    the search path is visible if there is no object of the same name
    and argument data type(s) earlier in the path.  For