Skip to content

Commit 488c35f

Browse files
committed
doc: Fix confusing description of streaming option in START_REPLICATION.
Previously, the documentation described the streaming option as a boolean, which is outdated since it's no longer a boolean as of protocol version 4. This could confuse users. This commit updates the description to remove the "boolean" reference and clearly list the valid values for the streaming option. Back-patch to v16, where the streaming option changed to a non-boolean. Author: Euler Taveira <euler@eulerto.com> Reviewed-by: Fujii Masao <masao.fujii@gmail.com> Discussion: https://postgr.es/m/8d21fb98-5c25-4dee-8387-e5a62b01ea7d@app.fastmail.com Backpatch-through: 16
1 parent b70a2e8 commit 488c35f

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

doc/src/sgml/protocol.sgml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3294,11 +3294,13 @@ psql "dbname=postgres replication=database" -c "IDENTIFY_SYSTEM;"
32943294
</term>
32953295
<listitem>
32963296
<para>
3297-
Boolean option to enable streaming of in-progress transactions.
3298-
It accepts an additional value "parallel" to enable sending extra
3299-
information with some messages to be used for parallelisation.
3300-
Minimum protocol version 2 is required to turn it on. Minimum protocol
3301-
version 4 is required for the "parallel" option.
3297+
Option to enable streaming of in-progress transactions. Valid values are
3298+
<literal>off</literal> (the default), <literal>on</literal> and
3299+
<literal>parallel</literal>. The setting <literal>parallel</literal>
3300+
enables sending extra information with some messages to be used for
3301+
parallelization. Minimum protocol version 2 is required to turn it
3302+
<literal>on</literal>. Minimum protocol version 4 is required for the
3303+
<literal>parallel</literal> value.
33023304
</para>
33033305
</listitem>
33043306
</varlistentry>

0 commit comments

Comments
 (0)