From 750fc78bca7c5cff7459d02315cf7fed4f4ce3a9 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 11 Aug 2015 10:46:51 -0400 Subject: [PATCH] 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. --- doc/src/sgml/func.sgml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index b1df55d7f6..249741e992 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()); pg_create_physical_replication_slot - pg_create_physical_replication_slot(slot_name name, immediately_reserve boolean ) + pg_create_physical_replication_slot(slot_name name , immediately_reserve boolean ) (slot_name name, xlog_position pg_lsn) Creates a new physical replication slot named - slot_name. Streaming changes from a physical slot - is only possible with the streaming-replication protocol - see . Corresponds to the replication protocol - command CREATE_REPLICATION_SLOT ... PHYSICAL. The optional - second parameter, when true, specifies that the LSN - for this replication slot be reserved immediately; the - is otherwise reserved on first connection from a streaming replication - client. + slot_name. The optional second parameter, + when true, specifies that the LSN for this + replication slot be reserved immediately; otherwise + the 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 — + see . This function corresponds + to the replication protocol command CREATE_REPLICATION_SLOT + ... PHYSICAL.