]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Remove unused PruneState member frz_conflict_horizon
authorMelanie Plageman <melanieplageman@gmail.com>
Tue, 10 Mar 2026 22:28:18 +0000 (18:28 -0400)
committerMelanie Plageman <melanieplageman@gmail.com>
Tue, 10 Mar 2026 22:31:00 +0000 (18:31 -0400)
c2a23dcf9e3af1c removed use of PruneState.frz_conflict_horizon but
neglected to actually remove the member. Do that now.

src/backend/access/heap/pruneheap.c

index 8748fa882e9829863929cf491de7a1ed92062c80..6beeb6956e3e25fc861f463abd123b08c6c07c5c 100644 (file)
@@ -114,13 +114,6 @@ typedef struct
         */
        HeapPageFreeze pagefrz;
 
-       /*
-        * The snapshot conflict horizon used when freezing tuples. The final
-        * snapshot conflict horizon for the record may be newer if pruning
-        * removes newer transaction IDs.
-        */
-       TransactionId frz_conflict_horizon;
-
        /*-------------------------------------------------------
         * Information about what was done
         *