diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-11-04 14:42:20 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-11-04 14:44:16 -0400 |
commit | c3f43a71663cdb9d589f536b544b03675f13e14f (patch) | |
tree | 00bf55b1fb83949b504a39d1cefa2a048ba3f3ad | |
parent | b17870d754665c4b431d3ce4de6676832a0b10a0 (diff) | |
download | postgresql-c3f43a71663cdb9d589f536b544b03675f13e14f.tar.gz postgresql-c3f43a71663cdb9d589f536b544b03675f13e14f.zip |
doc: Update text for new recovery_target_lsn setting
Reported-by: Tomonari Katsumata <t.katsumata1122@gmail.com>
Author: Michael Paquier <michael.paquier@gmail.com>
-rw-r--r-- | doc/src/sgml/recovery-config.sgml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/src/sgml/recovery-config.sgml b/doc/src/sgml/recovery-config.sgml index 0a5d086248c..7da9db16635 100644 --- a/doc/src/sgml/recovery-config.sgml +++ b/doc/src/sgml/recovery-config.sgml @@ -270,10 +270,11 @@ restore_command = 'copy "C:\\server\\archivedir\\%f" "%p"' # Windows Specifies whether to stop just after the specified recovery target (<literal>true</literal>), or just before the recovery target (<literal>false</literal>). - Applies when either <xref linkend="recovery-target-time"> - or <xref linkend="recovery-target-xid"> is specified. + Applies when <xref linkend="recovery-target-lsn">, + <xref linkend="recovery-target-time">, or + <xref linkend="recovery-target-xid"> is specified. This setting controls whether transactions - having exactly the target commit time or ID, respectively, will + having exactly the target WAL location (LSN), commit time, or transaction ID, respectively, will be included in the recovery. Default is <literal>true</>. </para> </listitem> |