Skip to content

Commit 15ff26d

Browse files
committed
relnotes: improve wording of several PG 15 items
Reported-by: Justin Pryzby Discussion: https://postgr.es/m/20220719012322.GD12702@telsasoft.com Backpatch-through: 15 only
1 parent c91a216 commit 15ff26d

File tree

1 file changed

+19
-36
lines changed

1 file changed

+19
-36
lines changed

doc/src/sgml/release-15.sgml

Lines changed: 19 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -538,13 +538,14 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
538538

539539
<listitem>
540540
<para>
541-
Allow <link linkend="custom-scan">custom scan provders</link>
541+
Allow <link linkend="custom-scan">custom scan providers</link>
542542
to indicate if they support projections (Sven Klemm)
543543
</para>
544544

545545
<para>
546-
The default is now that custom scan providers can't support
547-
projections, so they need to be updated for this release.
546+
The default is now that custom scan providers are assumed to not
547+
support projections; those that do need to be updated for this
548+
release.
548549
</para>
549550
</listitem>
550551

@@ -730,9 +731,9 @@ Author: Peter Geoghegan <pg@bowt.ie>
730731

731732
<listitem>
732733
<para>
733-
Enable system and <link
734-
linkend="storage-toast"><acronym>TOAST</acronym></link> btree
735-
indexes to efficiently store duplicates (Peter Geoghegan)
734+
Allow btree indexes on system and <link
735+
linkend="storage-toast"><acronym>TOAST</acronym></link>
736+
tables to efficiently store duplicates (Peter Geoghegan)
736737
</para>
737738

738739
<para>
@@ -753,19 +754,6 @@ Author: Alexander Korotkov <akorotkov@postgresql.org>
753754
</para>
754755
</listitem>
755756

756-
<!--
757-
Author: Tomas Vondra <tomas.vondra@postgresql.org>
758-
2021-11-30 [5753d4ee3] Ignore BRIN indexes when checking for HOT udpates
759-
-->
760-
761-
<listitem>
762-
<para>
763-
Prevent changes to columns only indexed by <link
764-
linkend="brin"><acronym>BRIN</acronym></link> indexes from
765-
disabling <acronym>HOT</acronym> updates (Josef Simanek)
766-
</para>
767-
</listitem>
768-
769757
<!--
770758
Author: Peter Eisentraut <peter@eisentraut.org>
771759
2022-02-03 [94aa7cc5f] Add UNIQUE null treatment option
@@ -1085,7 +1073,7 @@ Author: Alvaro Herrera <alvherre@alvh.no-ip.org>
10851073
</para>
10861074

10871075
<para>
1088-
Messages report the cause of the delay. The time interval for
1076+
The messages report the cause of the delay. The time interval for
10891077
notification is controlled by the new server variable <link
10901078
linkend="guc-log-startup-progress-interval"><varname>log_startup_progress_interval</varname></link>.
10911079
</para>
@@ -1488,7 +1476,7 @@ Author: Amit Kapila <akapila@postgresql.org>
14881476
linkend="sql-createpublication"><command>CREATE PUBLICATION pub1
14891477
FOR ALL TABLES IN SCHEMA s1,s2;</command></link> <command>ALTER
14901478
PUBLICATION</command> supports a similar syntax. Tables added
1491-
to the listed schemas in the future will also be replicated.
1479+
later to the listed schemas will also be replicated.
14921480
</para>
14931481
</listitem>
14941482

@@ -1614,7 +1602,7 @@ Author: Amit Kapila <akapila@postgresql.org>
16141602

16151603
<listitem>
16161604
<para>
1617-
Allow subscribers to stop logical replication application on error
1605+
Allow subscribers to stop the application of logical replication changes on error
16181606
(Osumi Takamichi, Mark Dilger)
16191607
</para>
16201608

@@ -1752,13 +1740,14 @@ Author: Robert Haas <rhaas@postgresql.org>
17521740

17531741
<listitem>
17541742
<para>
1755-
Add new default <acronym>WAL</acronym>-logged method for <link
1743+
Add new <acronym>WAL</acronym>-logged method for <link
17561744
linkend="sql-createdatabase">database creation</link> (Dilip Kumar)
17571745
</para>
17581746

17591747
<para>
1760-
This avoids the need for checkpoints during database creation;
1761-
the old method is still available.
1748+
This is the new default for database creation and avoids the need
1749+
for checkpoints during database creation; the old method is still
1750+
available.
17621751
</para>
17631752
</listitem>
17641753

@@ -2510,8 +2499,8 @@ Author: Robert Haas <rhaas@postgresql.org>
25102499

25112500
<listitem>
25122501
<para>
2513-
Allow <application>pg_basebackup</application> to use LZ4 and
2514-
Zstandard compression on server-side base backup files (Dipesh
2502+
Allow <application>pg_basebackup</application> to do LZ4 and
2503+
Zstandard server-side compression on base backup files (Dipesh
25152504
Pandit, Jeevan Ladhe)
25162505
</para>
25172506
</listitem>
@@ -2531,12 +2520,6 @@ Author: Robert Haas <rhaas@postgresql.org>
25312520
<option>--compress</option> option to control the compression
25322521
method and options (Michael Paquier, Robert Haas)
25332522
</para>
2534-
2535-
<para>
2536-
New options include <literal>server-gzip</literal> (gzip
2537-
on the server), <literal>client-gzip</literal> (same as
2538-
<literal>gzip</literal>).
2539-
</para>
25402523
</listitem>
25412524

25422525
<!--
@@ -2799,8 +2782,8 @@ Author: Robert Haas <rhaas@postgresql.org>
27992782

28002783
<listitem>
28012784
<para>
2802-
Have <application>pg_upgrade</application> preserve relfilenodes,
2803-
tablespace, and database OIDs between old and new clusters
2785+
Have <application>pg_upgrade</application> preserve tablespace
2786+
and database OIDs, and relfilenodes between old and new clusters
28042787
(Shruthi KC, Antonin Houska)
28052788
</para>
28062789
</listitem>
@@ -3009,7 +2992,7 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
30092992
</para>
30102993

30112994
<para>
3012-
Some internal-use-only types have also been assigned this column.
2995+
Some other internal-use-only values have also been assigned to this column.
30132996
</para>
30142997
</listitem>
30152998

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy