diff options
author | Heikki Linnakangas | 2017-04-10 11:08:20 +0000 |
---|---|---|
committer | Heikki Linnakangas | 2017-04-10 11:08:20 +0000 |
commit | 6c4ad8b7bf420a6f598e4b45560cffc40ded0875 (patch) | |
tree | 0124b33540da6874619f35ba7d288c8e8157b9c0 | |
parent | 86fa9b2d1b74cf7e3402c7653f7515b075eacc7b (diff) |
Document the "replication" option in StartupMessage.
It is documented in the Streaming Replication Protocol section, but was
missing from the list of options in StartupMessage description.
-rw-r--r-- | doc/src/sgml/protocol.sgml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/src/sgml/protocol.sgml b/doc/src/sgml/protocol.sgml index 9d46d741133..0d825e28586 100644 --- a/doc/src/sgml/protocol.sgml +++ b/doc/src/sgml/protocol.sgml @@ -5138,6 +5138,21 @@ StartupMessage (F) </para> </listitem> </varlistentry> +<varlistentry> +<term> + <literal>replication</> +</term> +<listitem> +<para> + Used to connect in streaming replication mode, where a small + set of replication commands can be issued instead of SQL + statements. Value can be <literal>true</>, + <literal>false</>, or <literal>database</>, and the default + is <literal>false</>. See + <xref linkend="protocol-replication"> for details. +</para> +</listitem> +</varlistentry> </variablelist> In addition to the above, any run-time parameter that can be |