diff --git a/doc/src/sgml/release-14.sgml b/doc/src/sgml/release-14.sgml
index 85ecdc1fd01..9015a78b09a 100644
--- a/doc/src/sgml/release-14.sgml
+++ b/doc/src/sgml/release-14.sgml
@@ -6,7 +6,7 @@
Release date:
- 2021-??-?? (AS OF 2021-06-20)
+ 2021-??-?? (AS OF 2021-09-18)
@@ -411,7 +411,7 @@ Author: Tom Lane
@@ -767,7 +767,7 @@ Author: Alvaro Herrera
@@ -858,24 +858,6 @@ Author: Noah Misch
-
-
- Autovacuum now analyzes
- partitioned tables (Yuzuko Hosoya, Álvaro Herrera)
-
-
-
- Insert, update, and delete tuple counts from partitions are now
- propagated to their parent tables so autovacuum knows when to
- process them.
-
-
-
-
-
@@ -1184,13 +1166,13 @@ Author: David Rowley
-->
- Add executor method to cache results from the inner-side of nested
- loop joins (David Rowley)
+ Add executor method to memoize results from the inner side of a
+ nested-loop join (David Rowley)
This is useful if only a small percentage of rows is checked on
- the inner side and is controlled by .
@@ -1281,7 +1263,7 @@ Author: Tom Lane
Author: Tom Lane
2021-03-02 [0c3405cf1] Improve performance of regular expression back-reference
Author: Tom Lane
-2021-03-02 [4604f83fd] Suppress unnecessary regex subre nodes in a couple more
+2021-03-02 [4604f83fd] Suppress unnecessary regex subre nodes in a couple more
Author: Tom Lane
2021-03-08 [6c20bdb2a] Further tweak memory management for regex DFAs.
Author: Tom Lane
@@ -1298,7 +1280,7 @@ Author: Tom Lane
@@ -1613,7 +1595,7 @@ Author: Andrew Dunstan
@@ -1899,7 +1881,7 @@ Author: Thomas Munro
@@ -1913,7 +1895,7 @@ Author: Michael Paquier
@@ -2131,7 +2113,7 @@ Author: Amit Kapila
@@ -2220,7 +2202,7 @@ Author: Peter Eisentraut
@@ -2414,7 +2396,7 @@ Author: Peter Eisentraut
Author: Peter Eisentraut
2021-01-30 [dfb75e478] Add primary keys and unique constraints to system catalo
Author: Tom Lane
-2021-02-02 [62f34097c] Build in some knowledge about foreign-key relationships
+2021-02-02 [62f34097c] Build in some knowledge about foreign-key relationships
-->
@@ -2500,6 +2482,8 @@ Author: Alexander Korotkov
2020-12-29 [db6335b5b] Add support of multirange matching to the existing range
Author: Alexander Korotkov
2020-12-30 [62097a4cc] Fix selectivity estimation @> (anymultirange, anyrange)
+Author: Alexander Korotkov
+2021-07-18 [244ad5415] Support for unnest(multirange)
-->
@@ -2908,7 +2892,7 @@ Author: Peter Eisentraut
@@ -2921,7 +2905,7 @@ Author: Tom Lane
@@ -2986,7 +2970,7 @@ Author: Tom Lane
@@ -3223,6 +3207,19 @@ Author: Dean Rasheed
+
+
+ Include disconnection times in the reconnection overhead measured
+ by pgbench with
+ (Yugo Nagata)
+
+
+
+
+
@@ -3281,7 +3278,7 @@ Author: Michael Paquier
@@ -3357,7 +3354,7 @@ Author: Tom Lane
Author: Michael Paquier
2020-07-21 [c273d9d8c] Rework tab completion of COPY and \copy in psql
Author: Michael Paquier
-2020-07-30 [f1af75c5f] Include partitioned tables for tab completion of VACUUM
+2020-07-30 [f1af75c5f] Include partitioned tables for tab completion of VACUUM
Author: Michael Paquier
2020-08-11 [1f75b4541] Improve tab completion of REINDEX in psql
Author: Michael Paquier
@@ -3379,13 +3376,13 @@ Author: Thomas Munro
Author: Fujii Masao
2021-02-25 [6b40d9bdb] Improve tab-completion for TRUNCATE.
Author: Michael Paquier
-2021-03-19 [5b2266e33] Improve tab completion of IMPORT FOREIGN SCHEMA with \h
+2021-03-19 [5b2266e33] Improve tab completion of IMPORT FOREIGN SCHEMA with \h
Author: Tom Lane
2021-04-08 [d1fcbde57] Add support for tab-completion of type arguments in \df,
Author: Fujii Masao
2021-04-12 [81e094bdf] Support tab-complete for TRUNCATE on foreign tables.
Author: Michael Paquier
-2021-04-21 [22b2dec31] Add CURRENT_ROLE to list of roles for tab completion of
+2021-04-21 [22b2dec31] Add CURRENT_ROLE to list of roles for tab completion of
Author: Alvaro Herrera
2021-04-26 [6dd1042ed] psql: tab-complete ALTER ... DETACH CONCURRENTLY / FINAL
Author: Michael Paquier
@@ -3587,15 +3584,21 @@ Author: Tom Lane
- Add
+ Add parameter
to control cache flushing for test purposes (Craig Ringer)
Previously this behavior could only be set at compile time.
+ To invoke it during initdb, use the new
+ option .
@@ -3714,6 +3717,30 @@ Author: Tom Lane
+
+
+
+
+ Provide feature-test macros in libpq-fe.h
+ for recently-added libpq features
+ (Tom Lane, Álvaro Herrera)
+
+
+
+ Historically, applications have usually used compile-time checks
+ of PG_VERSION_NUM to test whether a feature is
+ available. But that's normally the server version, which might
+ not be a good guide to libpq's
+ version. libpq-fe.h now
+ offers #define symbols denoting
+ application-visible features added in v14; the intent is to keep
+ adding symbols for such features in future versions.
+
+
+
@@ -3969,7 +3996,7 @@ Author: Tomas Vondra