]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
pg_waldump: Relax LSN comparison check in TAP test
authorMichael Paquier <michael@paquier.xyz>
Wed, 14 Jan 2026 07:02:39 +0000 (16:02 +0900)
committerMichael Paquier <michael@paquier.xyz>
Wed, 14 Jan 2026 07:02:39 +0000 (16:02 +0900)
The test 002_save_fullpage.pl, checking --save-fullpage fails with
wal_consistency_checking enabled, due to the fact that the block saved
in the file has the same LSN as the LSN used in the file name.  The test
required that the block LSN is stritly lower than file LSN.  This commit
relaxes the check a bit, by allowing the LSNs to match.

While on it, the test name is reworded to include some information about
the file and block LSNs, which is useful for debugging.

Author: Andrey Borodin <x4mmm@yandex-team.ru>
Discussion: https://postgr.es/m/4226AED7-E38F-419B-AAED-9BC853FB55DE@yandex-team.ru
Backpatch-through: 16

src/bin/pg_waldump/t/002_save_fullpage.pl

index f0725805f21921d6d79c2d42d08d6f4a524a43f8..2b8d6d595b61d6c9e72631f32a2d548d2cc69e2b 100644 (file)
@@ -104,8 +104,9 @@ for my $fullpath (glob "$tmp_folder/raw/*")
        my ($hi_lsn_bk, $lo_lsn_bk) = get_block_lsn($fullpath, $blocksize);
 
        # The LSN on the block comes before the file's LSN.
-       ok( $hi_lsn_fn . $lo_lsn_fn gt $hi_lsn_bk . $lo_lsn_bk,
-               'LSN stored in the file precedes the one stored in the block');
+       ok( $hi_lsn_fn . $lo_lsn_fn ge $hi_lsn_bk . $lo_lsn_bk,
+               "LSN stored in the file $hi_lsn_fn/$lo_lsn_fn precedes the one stored in the block $hi_lsn_bk/$lo_lsn_bk"
+       );
 }
 
 ok($file_count > 0, 'verify that at least one block has been saved');