Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit ca4599b

Browse files
committed
doc: PG 13 relnotes: cumulative fixes from email feedback
1 parent 4d15637 commit ca4599b

File tree

1 file changed

+35
-30
lines changed

1 file changed

+35
-30
lines changed

doc/src/sgml/release-13.sgml

+35-30
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
8787
-->
8888

8989
<para>
90-
In ltree, when using adjacent asterisks with braces, e.g. "*{2}.*{3}", properly interpret that as "*{5}" (Nikita Glukhov)
90+
In ltree, when using adjacent asterisks with braces, e.g. ".*{2}.*{3}", properly interpret that as ".*{5}" (Nikita Glukhov)
9191
</para>
9292

9393
</listitem>
@@ -273,7 +273,7 @@ Allow partitionwise joins to happen in more cases (Ashutosh Bapat, Etsuro Fujita
273273

274274
<para>
275275
For example, partitionwise joins can now happen between partitioned
276-
tables where the ancestors do not exactly match.
276+
tables even when their partition bounds do not match exactly.
277277
</para>
278278
</listitem>
279279

@@ -307,7 +307,7 @@ Allow partitioned tables to be logically replicated via publications (Amit Lango
307307

308308
<para>
309309
Previously, partitions had to be replicated individually. Now partitioned tables can be published explicitly causing all partitions to be automatically published. Addition/removal of partitions from
310-
partitioned tables are automatically added/removed from publications. The CREATE PUBLICATION option publish_via_partition_root controls whether partitioned tables are published as their own or their ancestors.
310+
partitioned tables are automatically added/removed from publications. The CREATE PUBLICATION option publish_via_partition_root controls whether changes to partitions are published as their own or their ancestor's.
311311
</para>
312312

313313
</listitem>
@@ -358,6 +358,12 @@ Author: Peter Geoghegan <pg@bowt.ie>
358358
More efficiently store duplicates in btree indexes (Anastasia Lubennikova, Peter Geoghegan)
359359
</para>
360360

361+
<para>
362+
This allows efficient btree indexing of low cardinality columns.
363+
Users upgrading with pg_upgrade will need to use REINDEX to make use of
364+
this feature.
365+
</para>
366+
361367
</listitem>
362368

363369
<listitem>
@@ -409,6 +415,12 @@ Author: Alexander Korotkov <akorotkov@postgresql.org>
409415
Allow CREATE INDEX to specify the GiST signature length and maximum number of integer ranges (Nikita Glukhov)
410416
</para>
411417

418+
<para>
419+
Indexes created on four and eight-byte integer array, tsvector, trigram,
420+
ltree, and hstore columns can now control these GiST index parameters,
421+
rather than using the defaults.
422+
</para>
423+
412424
</listitem>
413425

414426
<listitem>
@@ -593,7 +605,7 @@ Allow inserts to trigger autovacuum activity (Laurenz Albe, Darafei Praliaskousk
593605
</para>
594606

595607
<para>
596-
This new behavior allows pages to be set as all-visible, which then allows index-only scans, and reduces the work necessary when the table needs to be frozen.
608+
This new behavior reduces the work necessary when the table needs to be frozen and allows pages to be set as all-visible. All-visible pages allow index-only scans to access fewer heap rows.
597609
</para>
598610

599611
</listitem>
@@ -886,7 +898,7 @@ Author: Alvaro Herrera <alvherre@alvh.no-ip.org>
886898
-->
887899

888900
<para>
889-
Add system view pg_stat_progress_analyze to report analyze progress (&Aacute;lvaro Herrera, Tatsuro Yamada)
901+
Add system view pg_stat_progress_analyze to report analyze progress (&Aacute;lvaro Herrera, Tatsuro Yamada, Vinayak Pokale)
890902
</para>
891903

892904
</listitem>
@@ -913,10 +925,6 @@ Author: Robert Haas <rhaas@postgresql.org>
913925
Add system view pg_shmem_allocations to display shared memory usage (Andres Freund, Robert Haas)
914926
</para>
915927

916-
<para>
917-
WHAT IS THE ENTRY WITH NO NAME?
918-
</para>
919-
920928
</listitem>
921929

922930
<listitem>
@@ -1097,10 +1105,6 @@ Author: Peter Eisentraut <peter@eisentraut.org>
10971105
Allow allow_system_table_mods to be changed after server start (Peter Eisentraut)
10981106
</para>
10991107

1100-
<para>
1101-
Previously, this could only be set at server start.
1102-
</para>
1103-
11041108
</listitem>
11051109

11061110
<listitem>
@@ -1601,7 +1605,9 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
16011605
-->
16021606

16031607
<para>
1604-
Allow Unicode escapes, e.g., E'\u####', in databases that do not use UTF-8 encoding (Tom Lane)
1608+
Allow Unicode escapes, e.g., E'\u####', U&amp;'\####', to represent any
1609+
character available in the database encoding, even when the database
1610+
encoding is not UTF-8 (Tom Lane)
16051611
</para>
16061612

16071613
<para>
@@ -1977,6 +1983,9 @@ Author: Alexander Korotkov <akorotkov@postgresql.org>
19771983
Add psql commands to report operator classes and operator families (Sergey Cherkashin, Nikita Glukhov, Alexander Korotkov)
19781984
</para>
19791985

1986+
<para>
1987+
The new commands are \dAc, \dAf, \dAo, and \dAp.
1988+
</para>
19801989
</listitem>
19811990

19821991
<listitem>
@@ -2350,22 +2359,6 @@ Upgrade to use DocBook 4.5 (Peter Eisentraut)
23502359

23512360
</listitem>
23522361

2353-
<listitem>
2354-
<!--
2355-
Author: Peter Eisentraut <peter@eisentraut.org>
2356-
2020-03-29 [e1ff78048] Document color support
2357-
-->
2358-
2359-
<para>
2360-
Document color support (Peter Eisentraut)
2361-
</para>
2362-
2363-
<para>
2364-
THIS WAS NOT DOCUMENTED BEFORE?
2365-
</para>
2366-
2367-
</listitem>
2368-
23692362
<listitem>
23702363
<!--
23712364
Author: Michael Paquier <michael@paquier.xyz>
@@ -2418,6 +2411,18 @@ This adds Greek stemming and improves Danish and French stemming.
24182411

24192412
</listitem>
24202413

2414+
<listitem>
2415+
<!--
2416+
Author: Michael Paquier <michael@paquier.xyz>
2417+
2020-02-19 [e2e02191e] Clean up some code, comments and docs referring to Windo
2418+
-->
2419+
2420+
<para>
2421+
Remove support for Windows 2000 (Michael Paquier)
2422+
</para>
2423+
2424+
</listitem>
2425+
24212426
<listitem>
24222427
<!--
24232428
Author: Peter Eisentraut <peter@eisentraut.org>

0 commit comments

Comments
 (0)