diff options
author | Fujii Masao <fujii@postgresql.org> | 2019-05-09 01:35:13 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2019-05-09 01:45:10 +0900 |
commit | bc250ee7ebd0ff3b5bd1674fbf90a90032bad0fa (patch) | |
tree | cb5c5449b99729b31a58bc7a27e12ebf2749d50c | |
parent | 46012d152f8d123ddc9c739aed06d093b8553b66 (diff) |
Fix documentation for the privileges required for replication functions.
Previously it's documented that use of replication functions is
restricted to superusers. This is true for the functions which
use replication origin, but not for pg_logicl_emit_message() and
functions which use replication slot. For example, not only
superusers but also users with REPLICATION privilege is allowed
to use the functions for replication slot. This commit fixes
the documentation for the privileges required for those replication
functions.
Back-patch to 9.4 (all supported versions).
Author: Matsumura Ryo
Discussion: https://postgr.es/m/03040DFF97E6E54E88D3BFEE5F5480F74ABA6E16@G01JPEXMBYT04
-rw-r--r-- | doc/src/sgml/func.sgml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 377cf62cb69..a73d6d3d01a 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -16793,7 +16793,8 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup()); for controlling and interacting with replication features. See <xref linkend="streaming-replication"> and <xref linkend="streaming-replication-slots"> for information about the - underlying features. Use of these functions is restricted to superusers. + underlying features. Use of these functions is restricted to superusers + and users having <literal>REPLICATION</literal> privilege. </para> <para> |