@@ -18508,7 +18508,7 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
18508
18508
<literal><function>pg_replication_origin_drop(<parameter>node_name</parameter> <type>text</type>)</function></literal>
18509
18509
</entry>
18510
18510
<entry>
18511
- void
18511
+ <type> void</>
18512
18512
</entry>
18513
18513
<entry>
18514
18514
Delete a previously created replication origin, including any
@@ -18540,7 +18540,7 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
18540
18540
<literal><function>pg_replication_origin_session_setup(<parameter>node_name</parameter> <type>text</type>)</function></literal>
18541
18541
</entry>
18542
18542
<entry>
18543
- void
18543
+ <type> void</>
18544
18544
</entry>
18545
18545
<entry>
18546
18546
Mark the current session as replaying from the given
@@ -18558,7 +18558,7 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
18558
18558
<literal><function>pg_replication_origin_session_reset()</function></literal>
18559
18559
</entry>
18560
18560
<entry>
18561
- void
18561
+ <type> void</>
18562
18562
</entry>
18563
18563
<entry>
18564
18564
Cancel the effects
@@ -18607,7 +18607,7 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
18607
18607
<literal><function>pg_replication_origin_xact_setup(<parameter>origin_lsn</parameter> <type>pg_lsn</type>, <parameter>origin_timestamp</parameter> <type>timestamptz</type>)</function></literal>
18608
18608
</entry>
18609
18609
<entry>
18610
- void
18610
+ <type> void</>
18611
18611
</entry>
18612
18612
<entry>
18613
18613
Mark the current transaction as replaying a transaction that has
@@ -18626,7 +18626,7 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
18626
18626
<literal><function>pg_replication_origin_xact_reset()</function></literal>
18627
18627
</entry>
18628
18628
<entry>
18629
- void
18629
+ <type> void</>
18630
18630
</entry>
18631
18631
<entry>
18632
18632
Cancel the effects of
@@ -18642,7 +18642,7 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
18642
18642
<literal>pg_replication_origin_advance<function>(<parameter>node_name</parameter> <type>text</type>, <parameter>pos</parameter> <type>pg_lsn</type>)</function></literal>
18643
18643
</entry>
18644
18644
<entry>
18645
- void
18645
+ <type> void</>
18646
18646
</entry>
18647
18647
<entry>
18648
18648
Set replication progress for the given node to the given
@@ -19102,7 +19102,7 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
19102
19102
<tbody>
19103
19103
<row>
19104
19104
<entry>
19105
- <literal><function>brin_summarize_new_values(<parameter>index_oid </> <type>regclass</>)</function></literal>
19105
+ <literal><function>brin_summarize_new_values(<parameter>index </> <type>regclass</>)</function></literal>
19106
19106
</entry>
19107
19107
<entry><type>integer</type></entry>
19108
19108
<entry>summarize page ranges not already summarized</entry>
@@ -19119,8 +19119,8 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
19119
19119
</table>
19120
19120
19121
19121
<para>
19122
- <function>brin_summarize_new_values</>receives a BRIN index OID as
19123
- argument and inspects the index to find page ranges in the base table
19122
+ <function>brin_summarize_new_values</>accepts the OID or name of a
19123
+ BRIN index and inspects the index to find page ranges in the base table
19124
19124
that are not currently summarized by the index; for any such range
19125
19125
it creates a new summary index tuple by scanning the table pages.
19126
19126
It returns the number of new page range summaries that were inserted
@@ -19129,12 +19129,12 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
19129
19129
19130
19130
<para>
19131
19131
<function>gin_clean_pending_list</> accepts the OID or name of
19132
- a GIN index and cleans up the pending list of the specifiedGIN index
19132
+ a GIN index and cleans up the pending list of the specified index
19133
19133
by moving entries in it to the main GIN data structure in bulk.
19134
- It returns the number of pagescleaned up from the pending list.
19135
- Note that if the argument is a GIN index built with <literal>fastupdate</>
19136
- option disabled,the cleanupdoes not happen and the return value is 0
19137
- because the index doesn't have a pending list.
19134
+ It returns the number of pagesremoved from the pending list.
19135
+ Note that if the argument is a GIN index built with
19136
+ the <literal>fastupdate</> option disabled,no cleanuphappens and the
19137
+ return value is 0, because the index doesn't have a pending list.
19138
19138
Please see <xref linkend="gin-fast-update"> and <xref linkend="gin-tips">
19139
19139
for details of the pending list and <literal>fastupdate</> option.
19140
19140
</para>