Add missing FATAL => 'all' to a use warnings in Perl
authorPeter Eisentraut <[email protected]>
Tue, 29 Oct 2024 09:26:17 +0000 (10:26 +0100)
committerPeter Eisentraut <[email protected]>
Tue, 29 Oct 2024 09:26:17 +0000 (10:26 +0100)
Author: Anton Voloshin <[email protected]>
Discussion: https://www.postgresql.org/message-id/aa8a55d5-554a-4027-a491-1b0ca7c85f7a@postgrespro.ru

src/test/modules/test_misc/t/006_signal_autovacuum.pl

index aaea569c10199e9f057bf570656ba7e37d819f77..04b06bfc2ad8660a1f26af88e27cb267b4cbd409 100644 (file)
@@ -7,7 +7,7 @@
 # at the beginning of the autovacuum worker startup.
 
 use strict;
-use warnings;
+use warnings FATAL => 'all';
 use PostgreSQL::Test::Cluster;
 use Test::More;