diff options
author | Melanie Plageman <melanieplageman@gmail.com> | 2024-12-18 18:47:21 -0500 |
---|---|---|
committer | Melanie Plageman <melanieplageman@gmail.com> | 2024-12-18 18:47:21 -0500 |
commit | b7493e1ab353349855f553a4b4bee094cda4d9cc (patch) | |
tree | 7aad6e1db220d823b1e6499af902f03a140c0a5b | |
parent | 1a0da347a7ac98db6964feb5e3063fc6e8fc92a0 (diff) | |
download | postgresql-b7493e1ab353349855f553a4b4bee094cda4d9cc.tar.gz postgresql-b7493e1ab353349855f553a4b4bee094cda4d9cc.zip |
Remove leftover mentions of XLOG_HEAP2_FREEZE_PAGE records
f83d709760d merged the separate XLOG_HEAP2_FREEZE_PAGE records into a
new combined prune, freeze, and vacuum record with opcode
XLOG_HEAP2_PRUNE_VACUUM_SCAN. Remove the last few references to
XLOG_HEAP2_FREEZE_PAGE records which were accidentally left behind.
Reported-by: Tomas Vondra
Reviewed-by: Robert Haas
Discussion: https://postgr.es/m/CA%2BTgmoY1tYff-1CEn8kYt5FsOrynTbtr%3DUZw%3D7mTC1Hv1HpeBQ%40mail.gmail.com
-rw-r--r-- | src/backend/access/heap/pruneheap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/heap/pruneheap.c b/src/backend/access/heap/pruneheap.c index 869d82ad667..11c9532719d 100644 --- a/src/backend/access/heap/pruneheap.c +++ b/src/backend/access/heap/pruneheap.c @@ -1906,7 +1906,7 @@ heap_log_freeze_eq(xlhp_freeze_plan *plan, HeapTupleFreeze *frz) } /* - * Comparator used to deduplicate XLOG_HEAP2_FREEZE_PAGE freeze plans + * Comparator used to deduplicate the freeze plans used in WAL records. */ static int heap_log_freeze_cmp(const void *arg1, const void *arg2) @@ -1966,7 +1966,7 @@ heap_log_freeze_new_plan(xlhp_freeze_plan *plan, HeapTupleFreeze *frz) /* * Deduplicate tuple-based freeze plans so that each distinct set of - * processing steps is only stored once in XLOG_HEAP2_FREEZE_PAGE records. + * processing steps is only stored once in the WAL record. * Called during original execution of freezing (for logged relations). * * Return value is number of plans set in *plans_out for caller. Also writes |