On Wed, May 27, 2026 at 1:08 AM Zhijie Hou (Fujitsu) <[email protected]> wrote: > > 0001 remains unchanged. >
Few minor comments: ================= * + * To allow old WAL files to be recycled, we manually advance the + * slot each time a WAL segment boundary is crossed. This is safe only because REPACK creates a temporary slot that is dropped if REPACK fails — there's no scenario where this slot needs to restart decoding from an earlier position while still alive. I feel that is worth a mention. * @@ -1910,8 +1910,14 @@ LogicalConfirmReceivedLocation(XLogRecPtr lsn) SpinLockRelease(&MyReplicationSlot->mutex); ReplicationSlotsComputeRequiredXmin(false); - ReplicationSlotsComputeRequiredLSN(); } + + /* + * Now the new restart_lsn is safely on disk, recompute the global WAL + * retention requirement. + */ + if (updated_restart) + ReplicationSlotsComputeRequiredLSN(); This change is not related to this patch, rather we need it even without this patch, is it worth mentioning in the commit message? -- With Regards, Amit Kapila.
