pg_waldump: Relax LSN comparison check in TAP test
authorMichael Paquier <michael@paquier.xyz>
Wed, 14 Jan 2026 07:02:30 +0000 (16:02 +0900)
committerMichael Paquier <michael@paquier.xyz>
Wed, 14 Jan 2026 07:02:30 +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 7286f601ab4ec132c6d26471a25dc871bfe3e589..c38054a4c7bbe64658e527216061681ed55c73fe 100644 (file)
@@ -105,8 +105,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');