|
87 | 87 | -->
|
88 | 88 |
|
89 | 89 | <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) |
91 | 91 | </para>
|
92 | 92 |
|
93 | 93 | </listitem>
|
@@ -273,7 +273,7 @@ Allow partitionwise joins to happen in more cases (Ashutosh Bapat, Etsuro Fujita
|
273 | 273 |
|
274 | 274 | <para>
|
275 | 275 | 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. |
277 | 277 | </para>
|
278 | 278 | </listitem>
|
279 | 279 |
|
@@ -307,7 +307,7 @@ Allow partitioned tables to be logically replicated via publications (Amit Lango
|
307 | 307 |
|
308 | 308 | <para>
|
309 | 309 | 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. |
311 | 311 | </para>
|
312 | 312 |
|
313 | 313 | </listitem>
|
|
358 | 358 | More efficiently store duplicates in btree indexes (Anastasia Lubennikova, Peter Geoghegan)
|
359 | 359 | </para>
|
360 | 360 |
|
| 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 | + |
361 | 367 | </listitem>
|
362 | 368 |
|
363 | 369 | <listitem>
|
|
409 | 415 | Allow CREATE INDEX to specify the GiST signature length and maximum number of integer ranges (Nikita Glukhov)
|
410 | 416 | </para>
|
411 | 417 |
|
| 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 | + |
412 | 424 | </listitem>
|
413 | 425 |
|
414 | 426 | <listitem>
|
@@ -593,7 +605,7 @@ Allow inserts to trigger autovacuum activity (Laurenz Albe, Darafei Praliaskousk
|
593 | 605 | </para>
|
594 | 606 |
|
595 | 607 | <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. |
597 | 609 | </para>
|
598 | 610 |
|
599 | 611 | </listitem>
|
|
886 | 898 | -->
|
887 | 899 |
|
888 | 900 | <para>
|
889 |
| -Add system view pg_stat_progress_analyze to report analyze progress (Álvaro Herrera, Tatsuro Yamada) |
| 901 | +Add system view pg_stat_progress_analyze to report analyze progress (Álvaro Herrera, Tatsuro Yamada, Vinayak Pokale) |
890 | 902 | </para>
|
891 | 903 |
|
892 | 904 | </listitem>
|
|
913 | 925 | Add system view pg_shmem_allocations to display shared memory usage (Andres Freund, Robert Haas)
|
914 | 926 | </para>
|
915 | 927 |
|
916 |
| -<para> |
917 |
| -WHAT IS THE ENTRY WITH NO NAME? |
918 |
| -</para> |
919 |
| - |
920 | 928 | </listitem>
|
921 | 929 |
|
922 | 930 | <listitem>
|
|
1097 | 1105 | Allow allow_system_table_mods to be changed after server start (Peter Eisentraut)
|
1098 | 1106 | </para>
|
1099 | 1107 |
|
1100 |
| -<para> |
1101 |
| -Previously, this could only be set at server start. |
1102 |
| -</para> |
1103 |
| - |
1104 | 1108 | </listitem>
|
1105 | 1109 |
|
1106 | 1110 | <listitem>
|
|
1601 | 1605 | -->
|
1602 | 1606 |
|
1603 | 1607 | <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&'\####', to represent any |
| 1609 | +character available in the database encoding, even when the database |
| 1610 | +encoding is not UTF-8 (Tom Lane) |
1605 | 1611 | </para>
|
1606 | 1612 |
|
1607 | 1613 | <para>
|
|
1977 | 1983 | Add psql commands to report operator classes and operator families (Sergey Cherkashin, Nikita Glukhov, Alexander Korotkov)
|
1978 | 1984 | </para>
|
1979 | 1985 |
|
| 1986 | +<para> |
| 1987 | +The new commands are \dAc, \dAf, \dAo, and \dAp. |
| 1988 | +</para> |
1980 | 1989 | </listitem>
|
1981 | 1990 |
|
1982 | 1991 | <listitem>
|
@@ -2350,22 +2359,6 @@ Upgrade to use DocBook 4.5 (Peter Eisentraut)
|
2350 | 2359 |
|
2351 | 2360 | </listitem>
|
2352 | 2361 |
|
2353 |
| -<listitem> |
2354 |
| -<!-- |
2355 |
| -Author: Peter Eisentraut < [email protected]> |
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 |
| - |
2369 | 2362 | <listitem>
|
2370 | 2363 | <!--
|
2371 | 2364 | Author: Michael Paquier < [email protected]>
|
@@ -2418,6 +2411,18 @@ This adds Greek stemming and improves Danish and French stemming.
|
2418 | 2411 |
|
2419 | 2412 | </listitem>
|
2420 | 2413 |
|
| 2414 | +<listitem> |
| 2415 | +<!-- |
| 2416 | +Author: Michael Paquier < [email protected]> |
| 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 | + |
2421 | 2426 | <listitem>
|
2422 | 2427 | <!--
|
2423 | 2428 | Author: Peter Eisentraut < [email protected]>
|
|
0 commit comments