From 574a6563768feaa8bf3f6f2e28b0a508abc13727 Mon Sep 17 00:00:00 2001 From: Masahiko Sawada Date: Wed, 22 Oct 2025 17:17:38 -0700 Subject: [PATCH] Add copyright notice to vacuum_horizon_floor.pl test. Fix oversight in commit 303ba0573, which was backpatched through 14. Reviewed-by: Michael Paquier Discussion: https://postgr.es/m/CAD21AoBeFdTJcwUfUYPcEgONab3TS6i1PB9S5cSXcBAmdAdQKw%40mail.gmail.com Backpatch-through: 14 --- src/test/recovery/t/043_vacuum_horizon_floor.pl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/test/recovery/t/043_vacuum_horizon_floor.pl b/src/test/recovery/t/043_vacuum_horizon_floor.pl index 51b65048ee3..e2126503ec1 100644 --- a/src/test/recovery/t/043_vacuum_horizon_floor.pl +++ b/src/test/recovery/t/043_vacuum_horizon_floor.pl @@ -1,10 +1,12 @@ +# Copyright (c) 2025, PostgreSQL Global Development Group +# +# Test that vacuum prunes away all dead tuples killed before OldestXmin + use strict; use warnings; use PostgreSQL::Test::Cluster; use Test::More; -# Test that vacuum prunes away all dead tuples killed before OldestXmin - # Set up nodes my $node_primary = PostgreSQL::Test::Cluster->new('primary'); $node_primary->init(allows_streaming => 'physical');