From c265ed9b355fdd2a80e7af64e88cddabd3d39151 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 7 May 2020 13:06:31 -0400 Subject: [PATCH] doc: PG 13 relnotes: adjust partitioning items Reported-by: Amit Langote --- doc/src/sgml/release-13.sgml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/doc/src/sgml/release-13.sgml b/doc/src/sgml/release-13.sgml index 385021c1f7..239586c04b 100644 --- a/doc/src/sgml/release-13.sgml +++ b/doc/src/sgml/release-13.sgml @@ -271,6 +271,10 @@ Author: Tom Lane Allow partitionwise joins to happen in more cases (Ashutosh Bapat, Etsuro Fujita, Amit Langote, Tom Lane) + +For example, partitionwise joins can now happen between partitioned +tables where the ancestors do not exactly match. + @@ -303,7 +307,7 @@ Allow partitioned tables to be logically replicated via publications (Amit Lango 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 themselves or their ancestors. +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. @@ -315,9 +319,12 @@ Author: Peter Eisentraut --> -Allow non-partitioned tables to be logically replicated to subscribers that receive the rows into partitioned tables (Amit Langote) +Allow logical replication into partitioned tables on subscribers (Amit Langote) + +Previously, subscribers could only receive rows into non-partitioned tables. +