@@ -17228,7 +17228,8 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
1722817228 in <xref linkend="functions-replication-table"> are for
1722917229 controlling and interacting with replication features.
1723017230 See <xref linkend="streaming-replication">,
17231- <xref linkend="streaming-replication-slots">, <xref linkend="replication-origins">
17231+ <xref linkend="streaming-replication-slots">, and
17232+ <xref linkend="replication-origins">
1723217233 for information about the underlying features. Use of these
1723317234 functions is restricted to superusers.
1723417235 </para>
@@ -17239,9 +17240,11 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
1723917240 </para>
1724017241
1724117242 <para>
17242- The functions described in <xref linkend="functions-snapshot-synchronization">, <xref
17243- linkend="functions-recovery-control">, and <xref
17244- linkend="functions-admin-backup"> are also relevant for replication.
17243+ The functions described in
17244+ <xref linkend="functions-admin-backup">,
17245+ <xref linkend="functions-recovery-control">, and
17246+ <xref linkend="functions-snapshot-synchronization">
17247+ are also relevant for replication.
1724517248 </para>
1724617249
1724717250 <table id="functions-replication-table">
@@ -17401,11 +17404,11 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
1740117404 <literal><function>pg_replication_origin_create(<parameter>node_name</parameter> <type>text</type>)</function></literal>
1740217405 </entry>
1740317406 <entry>
17404- <parameter>internal_id</parameter> < type>oid</type>
17407+ <type>oid</type>
1740517408 </entry>
1740617409 <entry>
17407- Create a replication origin with the passed in external
17408- name, and create an internal id for it.
17410+ Create a replication origin with the given external
17411+ name, and return the internal id assigned to it.
1740917412 </entry>
1741017413 </row>
1741117414
@@ -17420,7 +17423,7 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
1742017423 void
1742117424 </entry>
1742217425 <entry>
17423- Delete a previously created replication origin, including the
17426+ Delete a previously created replication origin, including any
1742417427 associated replay progress.
1742517428 </entry>
1742617429 </row>
@@ -17433,10 +17436,10 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
1743317436 <literal><function>pg_replication_origin_oid(<parameter>node_name</parameter> <type>text</type>)</function></literal>
1743417437 </entry>
1743517438 <entry>
17436- <parameter>internal_id</parameter> < type>oid</type>
17439+ <type>oid</type>
1743717440 </entry>
1743817441 <entry>
17439- Lookup replication origin by name and return the internal id. If no
17442+ Lookup a replication origin by name and return the internal id. If no
1744017443 corresponding replication origin is found an error is thrown.
1744117444 </entry>
1744217445 </row>
@@ -17452,7 +17455,7 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
1745217455 void
1745317456 </entry>
1745417457 <entry>
17455- Configure the current session to be replaying from the passed in
17458+ Mark the current session as replaying from the given
1745617459 origin, allowing replay progress to be tracked. Use
1745717460 <function>pg_replication_origin_session_reset</function> to revert.
1745817461 Can only be used if no previous origin is configured.
@@ -17483,7 +17486,7 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
1748317486 <literal><function>pg_replication_origin_session_is_setup()</function></literal>
1748417487 </entry>
1748517488 <entry>
17486- bool
17489+ <type> bool</type>
1748717490 </entry>
1748817491 <entry>
1748917492 Has a replication origin been configured in the current session?
@@ -17498,7 +17501,7 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
1749817501 <literal><function>pg_replication_origin_session_progress(<parameter>flush</parameter> <type>bool</type>)</function></literal>
1749917502 </entry>
1750017503 <entry>
17501- pg_lsn
17504+ <type> pg_lsn</type>
1750217505 </entry>
1750317506 <entry>
1750417507 Return the replay position for the replication origin configured in
@@ -17519,8 +17522,8 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
1751917522 void
1752017523 </entry>
1752117524 <entry>
17522- Mark the current transaction to be replaying a transaction that has
17523- committed at the passed in <acronym>LSN</acronym> and timestamp. Can
17525+ Mark the current transaction as replaying a transaction that has
17526+ committed at the given <acronym>LSN</acronym> and timestamp. Can
1752417527 only be called when a replication origin has previously been
1752517528 configured using
1752617529 <function>pg_replication_origin_session_setup()</function>.
@@ -17554,7 +17557,7 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
1755417557 void
1755517558 </entry>
1755617559 <entry>
17557- Set replication progress for the passed in node to the passed in
17560+ Set replication progress for the given node to the given
1755817561 position. This primarily is useful for setting up the initial position
1755917562 or a new position after configuration changes and similar. Be aware
1756017563 that careless use of this function can lead to inconsistently
@@ -17570,10 +17573,10 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
1757017573 <literal><function>pg_replication_origin_progress(<parameter>node_name</parameter> <type>text</type>, <parameter>flush</parameter> <type>bool</type>)</function></literal>
1757117574 </entry>
1757217575 <entry>
17573- pg_lsn
17576+ <type> pg_lsn</type>
1757417577 </entry>
1757517578 <entry>
17576- Return the replay position for the passed in replication origin. The
17579+ Return the replay position for the given replication origin. The
1757717580 parameter <parameter>flush</parameter> determines whether the
1757817581 corresponding local transaction will be guaranteed to have been
1757917582 flushed to disk or not.
0 commit comments