aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2015-08-11 10:46:51 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2015-08-11 10:46:51 -0400
commit750fc78bca7c5cff7459d02315cf7fed4f4ce3a9 (patch)
treefb837533ac139ffc6a1844775bc76d1f6bd62226
parent15c3a1b45b480f6478555e9ddbc6093bd031d12c (diff)
downloadpostgresql-750fc78bca7c5cff7459d02315cf7fed4f4ce3a9.tar.gz
postgresql-750fc78bca7c5cff7459d02315cf7fed4f4ce3a9.zip
Fix broken markup, and copy-edit a bit.
Fix docs build failure introduced by commit 6fcd88511f8e69e3. I failed to resist the temptation to rearrange the description of pg_create_physical_replication_slot(), too.
-rw-r--r--doc/src/sgml/func.sgml19
1 files changed, 10 insertions, 9 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml
index b1df55d7f62..249741e992f 100644
--- a/doc/src/sgml/func.sgml
+++ b/doc/src/sgml/func.sgml
@@ -17211,21 +17211,22 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
<indexterm>
<primary>pg_create_physical_replication_slot</primary>
</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>
(<parameter>slot_name</parameter> <type>name</type>, <parameter>xlog_position</parameter> <type>pg_lsn</type>)
</entry>
<entry>
Creates a new physical replication slot named
- <parameter>slot_name</parameter>. Streaming changes from a physical slot
- is only possible with the streaming-replication protocol - see <xref
- linkend="protocol-replication">. Corresponds to the replication protocol
- command <literal>CREATE_REPLICATION_SLOT ... PHYSICAL</literal>. The optional
- second parameter, when <literal>true</>, specifies that the <acronym>LSN</>
- for this replication slot be reserved immediately; the <acronym<LSN</>
- is otherwise reserved on first connection from a streaming replication
- client.
+ <parameter>slot_name</parameter>. The optional second parameter,
+ when <literal>true</>, specifies that the <acronym>LSN</> for this
+ replication slot be reserved immediately; otherwise
+ the <acronym>LSN</> is reserved on first connection from a streaming
+ replication client. Streaming changes from a physical slot is only
+ possible with the streaming-replication protocol &mdash;
+ see <xref linkend="protocol-replication">. This function corresponds
+ to the replication protocol command <literal>CREATE_REPLICATION_SLOT
+ ... PHYSICAL</literal>.
</entry>
</row>
<row>