Skip to content

Commit 1e17ceb

Browse files
committed
Make another editorial pass over the 9.6 release notes.
I think they're pretty much release-quality now.
1 parent 197e8b7 commit 1e17ceb

File tree

2 files changed

+263
-212
lines changed

2 files changed

+263
-212
lines changed

doc/src/sgml/func.sgml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -18508,7 +18508,7 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
1850818508
<literal><function>pg_replication_origin_drop(<parameter>node_name</parameter> <type>text</type>)</function></literal>
1850918509
</entry>
1851018510
<entry>
18511-
void
18511+
<type>void</>
1851218512
</entry>
1851318513
<entry>
1851418514
Delete a previously created replication origin, including any
@@ -18540,7 +18540,7 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
1854018540
<literal><function>pg_replication_origin_session_setup(<parameter>node_name</parameter> <type>text</type>)</function></literal>
1854118541
</entry>
1854218542
<entry>
18543-
void
18543+
<type>void</>
1854418544
</entry>
1854518545
<entry>
1854618546
Mark the current session as replaying from the given
@@ -18558,7 +18558,7 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
1855818558
<literal><function>pg_replication_origin_session_reset()</function></literal>
1855918559
</entry>
1856018560
<entry>
18561-
void
18561+
<type>void</>
1856218562
</entry>
1856318563
<entry>
1856418564
Cancel the effects
@@ -18607,7 +18607,7 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
1860718607
<literal><function>pg_replication_origin_xact_setup(<parameter>origin_lsn</parameter> <type>pg_lsn</type>, <parameter>origin_timestamp</parameter> <type>timestamptz</type>)</function></literal>
1860818608
</entry>
1860918609
<entry>
18610-
void
18610+
<type>void</>
1861118611
</entry>
1861218612
<entry>
1861318613
Mark the current transaction as replaying a transaction that has
@@ -18626,7 +18626,7 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
1862618626
<literal><function>pg_replication_origin_xact_reset()</function></literal>
1862718627
</entry>
1862818628
<entry>
18629-
void
18629+
<type>void</>
1863018630
</entry>
1863118631
<entry>
1863218632
Cancel the effects of
@@ -18642,7 +18642,7 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
1864218642
<literal>pg_replication_origin_advance<function>(<parameter>node_name</parameter> <type>text</type>, <parameter>pos</parameter> <type>pg_lsn</type>)</function></literal>
1864318643
</entry>
1864418644
<entry>
18645-
void
18645+
<type>void</>
1864618646
</entry>
1864718647
<entry>
1864818648
Set replication progress for the given node to the given
@@ -19102,7 +19102,7 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
1910219102
<tbody>
1910319103
<row>
1910419104
<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>
1910619106
</entry>
1910719107
<entry><type>integer</type></entry>
1910819108
<entry>summarize page ranges not already summarized</entry>
@@ -19119,8 +19119,8 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
1911919119
</table>
1912019120

1912119121
<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
1912419124
that are not currently summarized by the index; for any such range
1912519125
it creates a new summary index tuple by scanning the table pages.
1912619126
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());
1912919129

1913019130
<para>
1913119131
<function>gin_clean_pending_list</> accepts the OID or name of
19132-
a GIN index and cleans up the pending list of the specified GIN index
19132+
a GIN index and cleans up the pending list of the specified index
1913319133
by moving entries in it to the main GIN data structure in bulk.
19134-
It returns the number of pages cleaned up from the pending list.
19135-
Note that if the argument is a GIN index built with <literal>fastupdate</>
19136-
option disabled, the cleanup does not happen and the return value is 0
19137-
because the index doesn't have a pending list.
19134+
It returns the number of pages removed from the pending list.
19135+
Note that if the argument is a GIN index built with
19136+
the <literal>fastupdate</> option disabled, no cleanup happens and the
19137+
return value is 0, because the index doesn't have a pending list.
1913819138
Please see <xref linkend="gin-fast-update"> and <xref linkend="gin-tips">
1913919139
for details of the pending list and <literal>fastupdate</> option.
1914019140
</para>

0 commit comments

Comments
 (0)