diff options
author | Fujii Masao <fujii@postgresql.org> | 2014-03-24 19:23:32 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2014-03-24 19:30:32 +0900 |
commit | cf5d38f4b9bcdf035c46ca8b3e5442557a21ef34 (patch) | |
tree | ae6c30e684f58b508c463e578e58becc5e71f0cd /doc/src | |
parent | 2f3afc09793da3a30f2878f34eda30a71060da7e (diff) | |
download | postgresql-cf5d38f4b9bcdf035c46ca8b3e5442557a21ef34.tar.gz postgresql-cf5d38f4b9bcdf035c46ca8b3e5442557a21ef34.zip |
Fix START_REPLICATION syntax in document.
Enclose "TIMELINE tli" part with brackets because it's optional.
Backport to 9.3 where TIMELINE option was introduced.
Noted by Marko Tiikkaja
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/protocol.sgml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/src/sgml/protocol.sgml b/doc/src/sgml/protocol.sgml index ea48c270852..36d16a557c9 100644 --- a/doc/src/sgml/protocol.sgml +++ b/doc/src/sgml/protocol.sgml @@ -1451,11 +1451,12 @@ The commands accepted in walsender mode are: </varlistentry> <varlistentry> - <term><literal>START_REPLICATION</literal> [<literal>SLOT</literal> <replaceable class="parameter">slotname</>] [<literal>PHYSICAL</literal>] <replaceable class="parameter">XXX/XXX</> <literal>TIMELINE</literal> <replaceable class="parameter">tli</></term> + <term><literal>START_REPLICATION</literal> [<literal>SLOT</literal> <replaceable class="parameter">slotname</>] [<literal>PHYSICAL</literal>] <replaceable class="parameter">XXX/XXX</> [<literal>TIMELINE</literal> <replaceable class="parameter">tli</>]</term> <listitem> <para> Instructs server to start streaming WAL, starting at - WAL position <replaceable class="parameter">XXX/XXX</>. If specified, + WAL position <replaceable class="parameter">XXX/XXX</>. + If <literal>TIMELINE</literal> option is specified, streaming starts on timeline <replaceable class="parameter">tli</>; otherwise, the server's current timeline is selected. The server can reply with an error, e.g. if the requested section of WAL has already |