diff options
author | Melanie Plageman <melanieplageman@gmail.com> | 2024-12-19 18:52:19 -0500 |
---|---|---|
committer | Melanie Plageman <melanieplageman@gmail.com> | 2024-12-19 18:52:19 -0500 |
commit | 8ac0021b6f10928a46b7f3d1b25bc21c0ac7f8c5 (patch) | |
tree | 4924785b7e9da607cf2eadf373bf074feb41ca28 /src/backend/access/transam/clog.c | |
parent | e0a2721f7c169b50617fed797d7336cd8f10bf77 (diff) | |
download | postgresql-8ac0021b6f10928a46b7f3d1b25bc21c0ac7f8c5.tar.gz postgresql-8ac0021b6f10928a46b7f3d1b25bc21c0ac7f8c5.zip |
Remove final mention of FREEZE_PAGE from comments
b7493e1ab35 removed leftover mentions of XLOG_HEAP2_FREEZE_PAGE records
from comments but neglected to remove one mention of FREEZE_PAGE.
Reported off-list by Alexander Lakhin
Diffstat (limited to 'src/backend/access/transam/clog.c')
-rw-r--r-- | src/backend/access/transam/clog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/transam/clog.c b/src/backend/access/transam/clog.c index e6f79320e94..1021802e7db 100644 --- a/src/backend/access/transam/clog.c +++ b/src/backend/access/transam/clog.c @@ -984,8 +984,8 @@ ExtendCLOG(TransactionId newestXact) /* * Remove all CLOG segments before the one holding the passed transaction ID * - * Before removing any CLOG data, we must flush XLOG to disk, to ensure - * that any recently-emitted FREEZE_PAGE records have reached disk; otherwise + * Before removing any CLOG data, we must flush XLOG to disk, to ensure that + * any recently-emitted records with freeze plans have reached disk; otherwise * a crash and restart might leave us with some unfrozen tuples referencing * removed CLOG data. We choose to emit a special TRUNCATE XLOG record too. * Replaying the deletion from XLOG is not critical, since the files could |