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
Improve the trigger behavior of updates on partitioned tables that move rows between partitions (Amit Langote)
573
+
Improve foreign key behavior of updates on partitioned tables that move rows between partitions (Amit Langote)
574
574
</para>
575
575
576
576
<para>
577
-
Previously, such updates fired delete triggers on the source partition and fired insert triggers on the target partition. PostgreSQL will now fire an update trigger on the partition root. This makes
578
-
foreign key behavior more consistent. ALL TRIGGERS?
577
+
Previously, such updates ran delete actions on the source partition and insert actions on the target partition. PostgreSQL will now run update actions on the partition root.
579
578
</para>
580
579
</listitem>
581
580
@@ -804,6 +803,21 @@ This will improve text-heavy operations like COPY FROM.
804
803
</para>
805
804
</listitem>
806
805
806
+
<!--
807
+
Author: David Rowley <drowley@postgresql.org>
808
+
2021-07-22 [91e9e89dc] Make nodeSort.c use Datum sorts for single column sorts
809
+
Author: David Rowley <drowley@postgresql.org>
810
+
2022-04-04 [40af10b57] Use Generation memory contexts to store tuples in sorts
811
+
Author: John Naylor <john.naylor@postgresql.org>
812
+
2022-04-02 [697492434] Specialize tuplesort routines for different kinds of abb
813
+
-->
814
+
815
+
<listitem>
816
+
<para>
817
+
Improve performance and reduce memory consumption of in-memory sorts (Ronan Dunklau, David Rowley, Thomas Munro)
818
+
</para>
819
+
</listitem>
820
+
807
821
<!--
808
822
Author: Michael Paquier <michael@paquier.xyz>
809
823
2021-06-29 [4035cd5d4] Add support for LZ4 with compression of full-page writes
0 commit comments