aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2024-10-29 10:26:17 +0100
committerPeter Eisentraut <peter@eisentraut.org>2024-10-29 10:26:17 +0100
commit014720c6d9fb1285846f0b7cc1c80bdbe887a743 (patch)
tree5beed08b58b729788f60578a86f2a135a16e815d /src
parent4b7bba49e71266ec378e672a1aaa9f16823449c2 (diff)
downloadpostgresql-014720c6d9fb1285846f0b7cc1c80bdbe887a743.tar.gz
postgresql-014720c6d9fb1285846f0b7cc1c80bdbe887a743.zip
Add missing FATAL => 'all' to a use warnings in Perl
Author: Anton Voloshin <a.voloshin@postgrespro.ru> Discussion: https://www.postgresql.org/message-id/aa8a55d5-554a-4027-a491-1b0ca7c85f7a@postgrespro.ru
Diffstat (limited to 'src')
-rw-r--r--src/test/modules/test_misc/t/006_signal_autovacuum.pl2
1 files changed, 1 insertions, 1 deletions
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;