diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2018-02-13 10:39:51 -0500 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2018-02-13 15:13:44 -0500 |
commit | 2ac3e6acc228e4b99022019379c6d5c4b61b231c (patch) | |
tree | eaf83ef3a705646b6377e3f2ec3357337b90e595 | |
parent | 7a32ac8a66903de8c352735f2a26f610f5e47090 (diff) | |
download | postgresql-2ac3e6acc228e4b99022019379c6d5c4b61b231c.tar.gz postgresql-2ac3e6acc228e4b99022019379c6d5c4b61b231c.zip |
doc: pg_function_is_visible also applies to aggregates and procedures
-rw-r--r-- | doc/src/sgml/func.sgml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 4be31b082a8..1e535cf2153 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -16820,6 +16820,8 @@ SELECT relname FROM pg_class WHERE pg_table_is_visible(oid); Each function performs the visibility check for one type of database object. Note that <function>pg_table_is_visible</function> can also be used with views, materialized views, indexes, sequences and foreign tables; + <function>pg_function_is_visible</function> can also be used with + procedures and aggregates; <function>pg_type_is_visible</function> can also be used with domains. For functions and operators, an object in the search path is visible if there is no object of the same name |