diff options
author | Peter Eisentraut | 2024-05-15 07:44:05 +0000 |
---|---|---|
committer | Peter Eisentraut | 2024-05-15 08:10:19 +0000 |
commit | cc70e170c0213977c106a61c8cedeaac83136c3d (patch) | |
tree | 04034749710c258f48dd669906255c00228430ad /src/common/unicode | |
parent | 54b69f1bd730a228a666441592a12d2a0cbe2a06 (diff) |
Make all Perl warnings fatal, catch-up
Apply c5385929593 to new Perl files that had missed the note.
Diffstat (limited to 'src/common/unicode')
-rw-r--r-- | src/common/unicode/generate-unicode_case_table.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/unicode/generate-unicode_case_table.pl b/src/common/unicode/generate-unicode_case_table.pl index e09ccffd426..508b05af8e9 100644 --- a/src/common/unicode/generate-unicode_case_table.pl +++ b/src/common/unicode/generate-unicode_case_table.pl @@ -9,7 +9,7 @@ # Copyright (c) 2000-2024, PostgreSQL Global Development Group use strict; -use warnings; +use warnings FATAL => 'all'; use Getopt::Long; use FindBin; |