aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2015-06-04 17:48:00 -0400
committerRobert Haas <rhaas@postgresql.org>2015-06-04 17:48:00 -0400
commit1c645da8ebb5532105481ad77bb1d9a671b1f086 (patch)
tree98c2bbcab4d0fc32a26ccd6427fe73d3fe8a27f9
parent1d27842519999cbac7e1cca8beaef053be9c7825 (diff)
downloadpostgresql-1c645da8ebb5532105481ad77bb1d9a671b1f086.tar.gz
postgresql-1c645da8ebb5532105481ad77bb1d9a671b1f086.zip
docs: Fix list of object types pg_table_is_visible() can handle.
Materialized views and foreign tables were missing from the list, probably because they are newer than the other object types that were mentioned. Etsuro Fujita
-rw-r--r--doc/src/sgml/func.sgml5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml
index c6e354054cd..080c388296f 100644
--- a/doc/src/sgml/func.sgml
+++ b/doc/src/sgml/func.sgml
@@ -15574,8 +15574,9 @@ SELECT relname FROM pg_class WHERE pg_table_is_visible(oid);
<para>
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, indexes and sequences; <function>pg_type_is_visible</function>
- can also be used with domains. For functions and operators, an object in
+ with views, materialized views, indexes, sequences and foreign tables;
+ <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
<emphasis>and argument data type(s)</> earlier in the path. For operator
classes, both name and associated index access method are considered.