]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Update minimum recovery point on truncation during WAL replay of abort record.
authorFujii Masao <fujii@postgresql.org>
Wed, 28 Jul 2021 16:34:13 +0000 (01:34 +0900)
committerFujii Masao <fujii@postgresql.org>
Wed, 28 Jul 2021 16:35:10 +0000 (01:35 +0900)
commit25fe5b2bb5fa35dfa05cb159216f3059540ba928
treecefadaa3d8f267efe96e552ec561a3fab29a8ff2
parent04fa0e11ac20cb3f26639bb95334b45fc81ebec5
Update minimum recovery point on truncation during WAL replay of abort record.

If a file is truncated, we must update minRecoveryPoint. Once a file is
truncated, there's no going back; it would not be safe to stop recovery
at a point earlier than that anymore.

Commit 7bffc9b7bf changed xact_redo_commit() so that it updates
minRecoveryPoint on truncation, but forgot to change xact_redo_abort().

Back-patch to all supported versions.

Reported-by: mengjuan.cmj@alibaba-inc.com
Author: Fujii Masao
Reviewed-by: Heikki Linnakangas
Discussion: https://postgr.es/m/b029fce3-4fac-4265-968e-16f36ff4d075.mengjuan.cmj@alibaba-inc.com
src/backend/access/transam/xact.c