aboutsummaryrefslogtreecommitdiff
path: root/src/bin/pg_walsummary/t/001_basic.pl
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2024-05-15 09:44:05 +0200
committerPeter Eisentraut <peter@eisentraut.org>2024-05-15 10:10:19 +0200
commitcc70e170c0213977c106a61c8cedeaac83136c3d (patch)
tree04034749710c258f48dd669906255c00228430ad /src/bin/pg_walsummary/t/001_basic.pl
parent54b69f1bd730a228a666441592a12d2a0cbe2a06 (diff)
downloadpostgresql-cc70e170c0213977c106a61c8cedeaac83136c3d.tar.gz
postgresql-cc70e170c0213977c106a61c8cedeaac83136c3d.zip
Make all Perl warnings fatal, catch-up
Apply c5385929593 to new Perl files that had missed the note.
Diffstat (limited to 'src/bin/pg_walsummary/t/001_basic.pl')
-rw-r--r--src/bin/pg_walsummary/t/001_basic.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_walsummary/t/001_basic.pl b/src/bin/pg_walsummary/t/001_basic.pl
index 0d606075c19..4a1555091a6 100644
--- a/src/bin/pg_walsummary/t/001_basic.pl
+++ b/src/bin/pg_walsummary/t/001_basic.pl
@@ -1,7 +1,7 @@
# Copyright (c) 2021-2024, PostgreSQL Global Development Group
use strict;
-use warnings;
+use warnings FATAL => 'all';
use PostgreSQL::Test::Utils;
use Test::More;