diff options
author | Bruce Momjian <bruce@momjian.us> | 2020-05-11 21:19:57 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2020-05-11 21:19:57 -0400 |
commit | ca4599b0dcc4ed44e24cc4f2cd39677a19356324 (patch) | |
tree | 8378f833fe2bf47c52dfc5fb48f57cf64f307a8a | |
parent | 4d1563717fb1860168a40b852e1d61a33ecdd62f (diff) | |
download | postgresql-ca4599b0dcc4ed44e24cc4f2cd39677a19356324.tar.gz postgresql-ca4599b0dcc4ed44e24cc4f2cd39677a19356324.zip |
doc: PG 13 relnotes: cumulative fixes from email feedback
-rw-r--r-- | doc/src/sgml/release-13.sgml | 65 |
1 files changed, 35 insertions, 30 deletions
diff --git a/doc/src/sgml/release-13.sgml b/doc/src/sgml/release-13.sgml index 239586c04b0..102b8366c51 100644 --- a/doc/src/sgml/release-13.sgml +++ b/doc/src/sgml/release-13.sgml @@ -87,7 +87,7 @@ Author: Tom Lane <tgl@sss.pgh.pa.us> --> <para> -In ltree, when using adjacent asterisks with braces, e.g. "*{2}.*{3}", properly interpret that as "*{5}" (Nikita Glukhov) +In ltree, when using adjacent asterisks with braces, e.g. ".*{2}.*{3}", properly interpret that as ".*{5}" (Nikita Glukhov) </para> </listitem> @@ -273,7 +273,7 @@ Allow partitionwise joins to happen in more cases (Ashutosh Bapat, Etsuro Fujita <para> For example, partitionwise joins can now happen between partitioned -tables where the ancestors do not exactly match. +tables even when their partition bounds do not match exactly. </para> </listitem> @@ -307,7 +307,7 @@ Allow partitioned tables to be logically replicated via publications (Amit Lango <para> 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 -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. +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. </para> </listitem> @@ -358,6 +358,12 @@ Author: Peter Geoghegan <pg@bowt.ie> More efficiently store duplicates in btree indexes (Anastasia Lubennikova, Peter Geoghegan) </para> +<para> +This allows efficient btree indexing of low cardinality columns. +Users upgrading with pg_upgrade will need to use REINDEX to make use of +this feature. +</para> + </listitem> <listitem> @@ -409,6 +415,12 @@ Author: Alexander Korotkov <akorotkov@postgresql.org> Allow CREATE INDEX to specify the GiST signature length and maximum number of integer ranges (Nikita Glukhov) </para> +<para> +Indexes created on four and eight-byte integer array, tsvector, trigram, +ltree, and hstore columns can now control these GiST index parameters, +rather than using the defaults. +</para> + </listitem> <listitem> @@ -593,7 +605,7 @@ Allow inserts to trigger autovacuum activity (Laurenz Albe, Darafei Praliaskousk </para> <para> -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. +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. </para> </listitem> @@ -886,7 +898,7 @@ Author: Alvaro Herrera <alvherre@alvh.no-ip.org> --> <para> -Add system view pg_stat_progress_analyze to report analyze progress (Álvaro Herrera, Tatsuro Yamada) +Add system view pg_stat_progress_analyze to report analyze progress (Álvaro Herrera, Tatsuro Yamada, Vinayak Pokale) </para> </listitem> @@ -913,10 +925,6 @@ Author: Robert Haas <rhaas@postgresql.org> Add system view pg_shmem_allocations to display shared memory usage (Andres Freund, Robert Haas) </para> -<para> -WHAT IS THE ENTRY WITH NO NAME? -</para> - </listitem> <listitem> @@ -1097,10 +1105,6 @@ Author: Peter Eisentraut <peter@eisentraut.org> Allow allow_system_table_mods to be changed after server start (Peter Eisentraut) </para> -<para> -Previously, this could only be set at server start. -</para> - </listitem> <listitem> @@ -1601,7 +1605,9 @@ Author: Tom Lane <tgl@sss.pgh.pa.us> --> <para> -Allow Unicode escapes, e.g., E'\u####', in databases that do not use UTF-8 encoding (Tom Lane) +Allow Unicode escapes, e.g., E'\u####', U&'\####', to represent any +character available in the database encoding, even when the database +encoding is not UTF-8 (Tom Lane) </para> <para> @@ -1977,6 +1983,9 @@ Author: Alexander Korotkov <akorotkov@postgresql.org> Add psql commands to report operator classes and operator families (Sergey Cherkashin, Nikita Glukhov, Alexander Korotkov) </para> +<para> +The new commands are \dAc, \dAf, \dAo, and \dAp. +</para> </listitem> <listitem> @@ -2352,22 +2361,6 @@ Upgrade to use DocBook 4.5 (Peter Eisentraut) <listitem> <!-- -Author: Peter Eisentraut <peter@eisentraut.org> -2020-03-29 [e1ff78048] Document color support ---> - -<para> -Document color support (Peter Eisentraut) -</para> - -<para> -THIS WAS NOT DOCUMENTED BEFORE? -</para> - -</listitem> - -<listitem> -<!-- Author: Michael Paquier <michael@paquier.xyz> 2019-07-02 [2b1394fc2] Add support for Visual Studio 2019 in build scripts --> @@ -2420,6 +2413,18 @@ This adds Greek stemming and improves Danish and French stemming. <listitem> <!-- +Author: Michael Paquier <michael@paquier.xyz> +2020-02-19 [e2e02191e] Clean up some code, comments and docs referring to Windo +--> + +<para> +Remove support for Windows 2000 (Michael Paquier) +</para> + +</listitem> + +<listitem> +<!-- Author: Peter Eisentraut <peter@eisentraut.org> 2019-07-01 [c72f9b950] Remove support for non-ELF BSD systems --> |