From: Peter Eisentraut Date: Tue, 29 Oct 2024 09:26:17 +0000 (+0100) Subject: Add missing FATAL => 'all' to a use warnings in Perl X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=014720c6d9fb1285846f0b7cc1c80bdbe887a743;p=postgresql.git Add missing FATAL => 'all' to a use warnings in Perl Author: Anton Voloshin Discussion: https://www.postgresql.org/message-id/aa8a55d5-554a-4027-a491-1b0ca7c85f7a@postgrespro.ru --- diff --git a/src/test/modules/test_misc/t/006_signal_autovacuum.pl b/src/test/modules/test_misc/t/006_signal_autovacuum.pl index aaea569c101..04b06bfc2ad 100644 --- a/src/test/modules/test_misc/t/006_signal_autovacuum.pl +++ b/src/test/modules/test_misc/t/006_signal_autovacuum.pl @@ -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;