From 7fb326e04b5c367f03b2ebb85348e79a722afef9 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 7 Nov 2020 15:27:36 -0500 Subject: [PATCH] Doc: small release note updates. Add items committed in the last 24 hours. Also correct my failure to credit Nikita Glukhov for 52ad1e659, which did all the heavy lifting for 3db322eaa. --- doc/src/sgml/release-13.sgml | 53 +++++++++++++++++++++++++++++++++++- 1 file changed, 52 insertions(+), 1 deletion(-) diff --git a/doc/src/sgml/release-13.sgml b/doc/src/sgml/release-13.sgml index 235d39ab6cb..05fa7a14960 100644 --- a/doc/src/sgml/release-13.sgml +++ b/doc/src/sgml/release-13.sgml @@ -361,7 +361,7 @@ Branch: REL_13_STABLE [5ed20a689] 2020-10-07 17:10:26 -0400 --> Prevent internal overflows in cross-type datetime - comparisons (Alexander Korotkov, Tom Lane) + comparisons (Nikita Glukhov, Alexander Korotkov, Tom Lane) @@ -700,6 +700,31 @@ Branch: REL_10_STABLE [fcc3665a0] 2020-09-17 15:59:42 +0530 + + Ensure that data is detoasted before being inserted into a BRIN + index (Tomas Vondra) + + + + Index entries are not supposed to contain out-of-line TOAST + pointers, but BRIN didn't get that memo. This could lead to errors + like missing chunk number 0 for toast value NNN. + (If you are faced with such an error from an existing + index, REINDEX should be enough to fix it.) + + + + + + + Fix edge-case memory leak + in index_get_partition() (Justin Pryzby) + + + + + + + Fix ecpg's mis-processing + of B'...' and X'...' literals + (Shenhao Wang) + + + + +