You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/src/sgml/release-13.sgml
+9-2Lines changed: 9 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -271,6 +271,10 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
271
271
Allow partitionwise joins to happen in more cases (Ashutosh Bapat, Etsuro Fujita, Amit Langote, Tom Lane)
272
272
</para>
273
273
274
+
<para>
275
+
For example, partitionwise joins can now happen between partitioned
276
+
tables where the ancestors do not exactly match.
277
+
</para>
274
278
</listitem>
275
279
276
280
<listitem>
@@ -303,7 +307,7 @@ Allow partitioned tables to be logically replicated via publications (Amit Lango
303
307
304
308
<para>
305
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
306
-
partitioned tables are automatically added/removed from publications. The CREATE PUBLICATION option publish_via_partition_root controls whether partitioned tables are published asthemselves or their ancestors.
310
+
partitioned tables are automatically added/removed from publications. The CREATE PUBLICATION option publish_via_partition_root controls whether partitioned tables are published astheir own or their ancestors.
307
311
</para>
308
312
309
313
</listitem>
@@ -315,9 +319,12 @@ Author: Peter Eisentraut <peter@eisentraut.org>
315
319
-->
316
320
317
321
<para>
318
-
Allownon-partitioned tables to be logically replicated to subscribers that receive the rowsinto partitioned tables (Amit Langote)
322
+
Allowlogical replicationinto partitioned tables on subscribers (Amit Langote)
319
323
</para>
320
324
325
+
<para>
326
+
Previously, subscribers could only receive rows into non-partitioned tables.