Commit 750fc78b authored by Tom Lane's avatar Tom Lane

Fix broken markup, and copy-edit a bit.

Fix docs build failure introduced by commit 6fcd8851.
I failed to resist the temptation to rearrange the description of
pg_create_physical_replication_slot(), too.
parent 15c3a1b4
...@@ -17211,21 +17211,22 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup()); ...@@ -17211,21 +17211,22 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
<indexterm> <indexterm>
<primary>pg_create_physical_replication_slot</primary> <primary>pg_create_physical_replication_slot</primary>
</indexterm> </indexterm>
<literal><function>pg_create_physical_replication_slot(<parameter>slot_name</parameter> <type>name</type><optional>, <parameter>immediately_reserve</> <type>boolean</> </optional>)</function></literal> <literal><function>pg_create_physical_replication_slot(<parameter>slot_name</parameter> <type>name</type> <optional>, <parameter>immediately_reserve</> <type>boolean</> </optional>)</function></literal>
</entry> </entry>
<entry> <entry>
(<parameter>slot_name</parameter> <type>name</type>, <parameter>xlog_position</parameter> <type>pg_lsn</type>) (<parameter>slot_name</parameter> <type>name</type>, <parameter>xlog_position</parameter> <type>pg_lsn</type>)
</entry> </entry>
<entry> <entry>
Creates a new physical replication slot named Creates a new physical replication slot named
<parameter>slot_name</parameter>. Streaming changes from a physical slot <parameter>slot_name</parameter>. The optional second parameter,
is only possible with the streaming-replication protocol - see <xref when <literal>true</>, specifies that the <acronym>LSN</> for this
linkend="protocol-replication">. Corresponds to the replication protocol replication slot be reserved immediately; otherwise
command <literal>CREATE_REPLICATION_SLOT ... PHYSICAL</literal>. The optional the <acronym>LSN</> is reserved on first connection from a streaming
second parameter, when <literal>true</>, specifies that the <acronym>LSN</> replication client. Streaming changes from a physical slot is only
for this replication slot be reserved immediately; the <acronym<LSN</> possible with the streaming-replication protocol &mdash;
is otherwise reserved on first connection from a streaming replication see <xref linkend="protocol-replication">. This function corresponds
client. to the replication protocol command <literal>CREATE_REPLICATION_SLOT
... PHYSICAL</literal>.
</entry> </entry>
</row> </row>
<row> <row>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment