diff options
author | Bruce Momjian <bruce@momjian.us> | 2019-05-22 10:54:40 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2019-05-22 10:54:40 -0400 |
commit | ba95a6933632410d103d6f17cd3bc1adf92a08f9 (patch) | |
tree | 6622d1c4f578807c38d004cc1e1e7478956aa78a /doc/src | |
parent | 4a657ab260499381c645673ca1c3255adc0b2ace (diff) | |
download | postgresql-ba95a6933632410d103d6f17cd3bc1adf92a08f9.tar.gz postgresql-ba95a6933632410d103d6f17cd3bc1adf92a08f9.zip |
doc: PG 12 relnotes, correct recovery_target* variable mention
Clarify new restriction on recovery_target* variables.
Reported-by: Gaby Schilders
Discussion: reported via chat
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/release-12.sgml | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/doc/src/sgml/release-12.sgml b/doc/src/sgml/release-12.sgml index 10b3ed56f78..dcce8668929 100644 --- a/doc/src/sgml/release-12.sgml +++ b/doc/src/sgml/release-12.sgml @@ -127,15 +127,20 @@ Author: Peter Eisentraut <peter_e@gmx.net> --> <para> - Do not allow multiple different <link + Do not allow multiple conflicting <link linkend="runtime-config-wal-recovery-target"><varname>recovery_target</varname>*</link> specifications (Peter Eisentraut) </para> <para> - Previously, multiple different <varname>recovery_target</varname>* - variables could be specified, and the last one specified was - honored. Now, only one can be specified, though the same one can + Specifically, only allow one of <xref + linkend="guc-recovery-target"/>, <xref + linkend="guc-recovery-target-lsn"/>, + <xref linkend="guc-recovery-target-name"/>, + <xref linkend="guc-recovery-target-time"/>, <xref + linkend="guc-recovery-target-xid"/>. Previously, multiple different + instances of the variables above could be specified, and the last one + was honored. Now, only one can be specified, though the same one can be specified multiple times and the last specification is honored. </para> </listitem> |