]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Add copyright notice to vacuum_horizon_floor.pl test.
authorMasahiko Sawada <msawada@postgresql.org>
Thu, 23 Oct 2025 00:17:38 +0000 (17:17 -0700)
committerMasahiko Sawada <msawada@postgresql.org>
Thu, 23 Oct 2025 00:17:38 +0000 (17:17 -0700)
Fix oversight in commit 303ba0573, which was backpatched through 14.

Reviewed-by: Michael Paquier <michael@paquier.xyz>
Discussion: https://postgr.es/m/CAD21AoBeFdTJcwUfUYPcEgONab3TS6i1PB9S5cSXcBAmdAdQKw%40mail.gmail.com
Backpatch-through: 14

src/test/recovery/t/043_vacuum_horizon_floor.pl

index 51b65048ee32a254b6ab93a8691ef615c4e1a5f6..e2126503ec14564271cf65e5635abb6392dbca1b 100644 (file)
@@ -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');