projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d2b4b4c
)
Make all Perl warnings fatal in 043_wal_replay_wait.pl
author
Alexander Korotkov
Tue, 22 Oct 2024 10:25:10 +0000
(13:25 +0300)
committer
Alexander Korotkov
Tue, 22 Oct 2024 10:25:11 +0000
(13:25 +0300)
This file was committed after
c5385929593
, but accidentally missed changing
all warnings into fatal errors.
Reported-by: Anton Voloshin
Discussion: https://postgr.es/m/
aa8a55d5
-554a-4027-a491-
1b0ca7c85f7a
%40postgrespro.ru
src/test/recovery/t/043_wal_replay_wait.pl
patch
|
blob
|
blame
|
history
diff --git
a/src/test/recovery/t/043_wal_replay_wait.pl
b/src/test/recovery/t/043_wal_replay_wait.pl
index 024f1fe6488a6237a0ed3ed30ab7ffd17ef2a048..cf77a9eec70a6ab32e6af9b48068fd001ef11792 100644
(file)
--- a/
src/test/recovery/t/043_wal_replay_wait.pl
+++ b/
src/test/recovery/t/043_wal_replay_wait.pl
@@
-1,7
+1,7
@@
# Checks waiting for the lsn replay on standby using
# pg_wal_replay_wait() procedure.
use strict;
-use warnings;
+use warnings
FATAL => 'all'
;
use PostgreSQL::Test::Cluster;
use PostgreSQL::Test::Utils;