diff options
author | Alexander Korotkov | 2024-10-22 10:25:10 +0000 |
---|---|---|
committer | Alexander Korotkov | 2024-10-22 10:25:11 +0000 |
commit | e1555645d729e0b91f644954e83e1ed51baa58df (patch) | |
tree | cbaf6f8ac1f98d93a7327884718475ff92ae01c2 | |
parent | d2b4b4c2259e21ceaf05e393769b69728bfbee99 (diff) |
Make all Perl warnings fatal in 043_wal_replay_wait.pl
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
-rw-r--r-- | src/test/recovery/t/043_wal_replay_wait.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/recovery/t/043_wal_replay_wait.pl b/src/test/recovery/t/043_wal_replay_wait.pl index 024f1fe6488..cf77a9eec70 100644 --- 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; |