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()); 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.