diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2019-09-27 16:21:47 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2019-09-27 16:21:47 +0200 |
commit | a37980d4282436b4019a8e427b02919b04cb625a (patch) | |
tree | 6e92b415acacd1f37ad285bcdf1e3e4cadb6afec | |
parent | 268c4e9d4d88f5b4baca88ef31e914a1ac1fb7e9 (diff) | |
download | postgresql-a37980d4282436b4019a8e427b02919b04cb625a.tar.gz postgresql-a37980d4282436b4019a8e427b02919b04cb625a.zip |
doc: Add timeline as valid recovery target in standby.signal documentation
The documentation states that no target settings will be used when
standby.signal is present, but this is not quite the case since
recovery_target_timeline is a valid recovery target for a standby.
Update the documentation with this exception.
Author: David Steele <david@pgmasters.net>
Discussion: https://www.postgresql.org/message-id/flat/e445616d-023e-a268-8aa1-67b8b335340c%40pgmasters.net
-rw-r--r-- | doc/src/sgml/config.sgml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 6612f95f9fa..4784b4b18e8 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -3156,7 +3156,9 @@ include_dir 'conf.d' use parameters in both <xref linkend="runtime-config-wal-archive-recovery"/> and <xref linkend="runtime-config-replication-standby"/>. Parameters from - <xref linkend="runtime-config-wal-recovery-target"/> will not be used. + <xref linkend="runtime-config-wal-recovery-target"/> will not be used, + with the exception of <xref linkend="guc-recovery-target-timeline"/> + which allows a timeline to be selected for recovery. </para> <para> |