From: Masahiko Sawada Date: Thu, 23 Oct 2025 00:17:38 +0000 (-0700) Subject: Add copyright notice to vacuum_horizon_floor.pl test. X-Git-Tag: REL_15_15~33 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=574a6563768feaa8bf3f6f2e28b0a508abc13727;p=postgresql.git 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 --- 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');