We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34b82f2 commit f6dc340Copy full SHA for f6dc340
1 file changed
t/001_basic.pl
@@ -119,7 +119,7 @@ BEGIN
119
my $init_lsn = $node->safe_psql("postgres", "SELECT ptrack_init_lsn()");
120
like(
121
$init_lsn,
122
- qr/0\/[0-9][0-9]+/,
+ qr/0\/[0-9A-F][0-9A-F]+/,
123
'ptrack init LSN should not be 0/0 after CHECKPOINT');
124
125
# Ptrack map should survive crash
@@ -163,7 +163,7 @@ BEGIN
163
$res_stdout = $node->safe_psql("postgres", "SELECT ptrack_init_lsn()");
164
165
$res_stdout,
166
167
168
ok($res_stdout ne $init_lsn, 'ptrack init_lsn should not be the same after map resize');
169
$res_stdout = $node->safe_psql("postgres", "SELECT ptrack_get_pagemapset('$flush_lsn')");
0 commit comments