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.
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
- linkend="protocol-replication">. 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.
|