Skip to content

Commit 750fc78

Browse files
committed
Fix broken markup, and copy-edit a bit.
Fix docs build failure introduced by commit 6fcd885. I failed to resist the temptation to rearrange the description of pg_create_physical_replication_slot(), too.
1 parent 15c3a1b commit 750fc78

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

doc/src/sgml/func.sgml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17211,21 +17211,22 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
1721117211
<indexterm>
1721217212
<primary>pg_create_physical_replication_slot</primary>
1721317213
</indexterm>
17214-
<literal><function>pg_create_physical_replication_slot(<parameter>slot_name</parameter> <type>name</type><optional>, <parameter>immediately_reserve</> <type>boolean</> </optional>)</function></literal>
17214+
<literal><function>pg_create_physical_replication_slot(<parameter>slot_name</parameter> <type>name</type> <optional>, <parameter>immediately_reserve</> <type>boolean</> </optional>)</function></literal>
1721517215
</entry>
1721617216
<entry>
1721717217
(<parameter>slot_name</parameter> <type>name</type>, <parameter>xlog_position</parameter> <type>pg_lsn</type>)
1721817218
</entry>
1721917219
<entry>
1722017220
Creates a new physical replication slot named
17221-
<parameter>slot_name</parameter>. Streaming changes from a physical slot
17222-
is only possible with the streaming-replication protocol - see <xref
17223-
linkend="protocol-replication">. Corresponds to the replication protocol
17224-
command <literal>CREATE_REPLICATION_SLOT ... PHYSICAL</literal>. The optional
17225-
second parameter, when <literal>true</>, specifies that the <acronym>LSN</>
17226-
for this replication slot be reserved immediately; the <acronym<LSN</>
17227-
is otherwise reserved on first connection from a streaming replication
17228-
client.
17221+
<parameter>slot_name</parameter>. The optional second parameter,
17222+
when <literal>true</>, specifies that the <acronym>LSN</> for this
17223+
replication slot be reserved immediately; otherwise
17224+
the <acronym>LSN</> is reserved on first connection from a streaming
17225+
replication client. Streaming changes from a physical slot is only
17226+
possible with the streaming-replication protocol &mdash;
17227+
see <xref linkend="protocol-replication">. This function corresponds
17228+
to the replication protocol command <literal>CREATE_REPLICATION_SLOT
17229+
... PHYSICAL</literal>.
1722917230
</entry>
1723017231
</row>
1723117232
<row>

0 commit comments

Comments
 (0)