Index: doc/src/sgml/func.sgml =================================================================== RCS file: /projects/cvsroot/pgsql-server/doc/src/sgml/func.sgml,v retrieving revision 1.146 diff -c -r1.146 func.sgml *** doc/src/sgml/func.sgml 2003/03/21 21:54:29 1.146 --- doc/src/sgml/func.sgml 2003/03/24 03:26:35 *************** *** 6743,6748 **** --- 6743,6754 ---- boolean is operator class visible in search path + + pg_conversion_is_visible(conversion_oid) + + boolean + is conversion visible in search path + *************** *** 6762,6777 **** pg_opclass_is_visible pg_table_is_visible performs the check for tables (or views, or any other kind of pg_class entry). pg_type_is_visible, pg_function_is_visible, ! pg_operator_is_visible, and ! pg_opclass_is_visible perform the same sort of ! visibility check for types, functions, operators, and operator ! classes, 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 operator classes, both name and associated index access method are --- 6768,6787 ---- pg_opclass_is_visible + + pg_conversion_is_visible + pg_table_is_visible performs the check for tables (or views, or any other kind of pg_class entry). pg_type_is_visible, pg_function_is_visible, ! 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 ! 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 operator classes, both name and associated index access method are *************** *** 6819,6826 **** extract information from the system catalogs. pg_get_viewdef, pg_get_ruledef, ! pg_get_indexdef(), ! pg_get_triggerdef(), and pg_get_constraintdef respectively reconstruct the creating command for a view, rule, index, or constraint. (Note that this is a decompiled reconstruction, not --- 6829,6836 ---- extract information from the system catalogs. pg_get_viewdef, pg_get_ruledef, ! pg_get_indexdef, ! pg_get_triggerdef, and pg_get_constraintdef respectively reconstruct the creating command for a view, rule, index, or constraint. (Note that this is a decompiled reconstruction, not *************** *** 6858,6866 **** get CREATE INDEX command for index ! pg_get_triggerdef(triggerOID) text ! Get CREATE [ CONSTRAINT ] TRIGGER command for trigger pg_get_constraintdef(constraint_oid) --- 6868,6876 ---- get CREATE INDEX command for index ! pg_get_triggerdef(trigger_oid) text ! get CREATE [ CONSTRAINT ] TRIGGER command for trigger pg_get_constraintdef(constraint_oid)