diff options
author | Robert Haas <rhaas@postgresql.org> | 2016-06-27 17:54:28 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2016-06-27 17:55:03 -0400 |
commit | 957616dbaef0e7f182e6260483bca79a38ae247f (patch) | |
tree | 548e148de58d204ff2b8ce9311e82474257b146e | |
parent | 874fe3aea121b4ceb186d59ba6956e2f7d5aa0bb (diff) | |
download | postgresql-957616dbaef0e7f182e6260483bca79a38ae247f.tar.gz postgresql-957616dbaef0e7f182e6260483bca79a38ae247f.zip |
Fix mistakes in pg_visibility documentation.
Michael Paquier
-rw-r--r-- | doc/src/sgml/pgvisibility.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/pgvisibility.sgml b/doc/src/sgml/pgvisibility.sgml index 44e83de7289..d764eff9a01 100644 --- a/doc/src/sgml/pgvisibility.sgml +++ b/doc/src/sgml/pgvisibility.sgml @@ -59,13 +59,13 @@ <para> Returns the all-visible and all-frozen bits in the visibility map for the given block of the given relation, plus the - <literal>PD_ALL_VISIBILE</> bit for that block. + <literal>PD_ALL_VISIBLE</> bit for that block. </para> </listitem> </varlistentry> <varlistentry> - <term><function>pg_visibility_map(regclass, blkno OUT bigint, all_visible OUT boolean, all_frozen OUT boolean) returns record</function></term> + <term><function>pg_visibility_map(regclass, blkno OUT bigint, all_visible OUT boolean, all_frozen OUT boolean) returns setof record</function></term> <listitem> <para> Returns the all-visible and all-frozen bits in the visibility map for @@ -75,7 +75,7 @@ </varlistentry> <varlistentry> - <term><function>pg_visibility(regclass, blkno OUT bigint, all_visible OUT boolean, all_frozen OUT boolean, pd_all_visible OUT boolean) returns record</function></term> + <term><function>pg_visibility(regclass, blkno OUT bigint, all_visible OUT boolean, all_frozen OUT boolean, pd_all_visible OUT boolean) returns setof record</function></term> <listitem> <para> |