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
`PartitionRouter` is another *proxy node* used in conjunction with `PartitionFilter` to enable cross-partition UPDATEs (i.e. when update of partitioning key requires that we move row to another partition). Since this node has a great deal of side effects (ordinary `UPDATE` becomes slower; cross-partition `UPDATE` is transformed into `DELETE + INSERT`), it is disabled by default. To enable it, refer to the list of [GUCs](#disabling-pg_pathman) below.
438
+
`PartitionOverseer` and `PartitionRouter` are another *proxy nodes* used
439
+
in conjunction with `PartitionFilter` to enable cross-partition UPDATEs
440
+
(i.e. when update of partitioning key requires that we move row to another
441
+
partition). Since this node has a great deal of side effects (ordinary `UPDATE` becomes slower;
442
+
cross-partition `UPDATE` is transformed into `DELETE + INSERT`),
443
+
it is disabled by default.
444
+
To enable it, refer to the list of [GUCs](#disabling-pg_pathman) below.
0 commit comments