postgresql/contrib/fuzzystrmatch
Peter Eisentraut c538592959 Make all Perl warnings fatal
There are a lot of Perl scripts in the tree, mostly code generation
and TAP tests.  Occasionally, these scripts produce warnings.  These
are probably always mistakes on the developer side (true positives).
Typical examples are warnings from genbki.pl or related when you make
a mess in the catalog files during development, or warnings from tests
when they massage a config file that looks different on different
hosts, or mistakes during merges (e.g., duplicate subroutine
definitions), or just mistakes that weren't noticed because there is a
lot of output in a verbose build.

This changes all warnings into fatal errors, by replacing

    use warnings;

by

    use warnings FATAL => 'all';

in all Perl files.

Discussion: https://www.postgresql.org/message-id/flat/06f899fd-1826-05ab-42d6-adeb1fd5e200%40eisentraut.org
2023-12-29 18:20:00 +01:00
..
expected Ensure Soundex difference() function handles empty input sanely. 2023-05-16 10:53:42 -04:00
sql Ensure Soundex difference() function handles empty input sanely. 2023-05-16 10:53:42 -04:00
.gitignore Add support for Daitch-Mokotoff Soundex in contrib/fuzzystrmatch. 2023-04-07 17:32:26 -04:00
Makefile Remove distprep 2023-11-06 15:18:04 +01:00
daitch_mokotoff.c Avoid using non-ASCII commentary in daitch_mokotoff.c. 2023-04-16 12:57:32 -04:00
daitch_mokotoff_header.pl Make all Perl warnings fatal 2023-12-29 18:20:00 +01:00
dmetaphone.c Harmonize parameter names in contrib code. 2022-09-22 13:59:20 -07:00
fuzzystrmatch--1.0--1.1.sql Update fuzzystrmatch extension for parallel query. 2016-06-07 11:26:41 -04:00
fuzzystrmatch--1.1--1.2.sql Add support for Daitch-Mokotoff Soundex in contrib/fuzzystrmatch. 2023-04-07 17:32:26 -04:00
fuzzystrmatch--1.1.sql Update fuzzystrmatch extension for parallel query. 2016-06-07 11:26:41 -04:00
fuzzystrmatch.c Add some const qualifiers 2023-09-26 11:28:57 +01:00
fuzzystrmatch.control Add support for Daitch-Mokotoff Soundex in contrib/fuzzystrmatch. 2023-04-07 17:32:26 -04:00
meson.build Add support for Daitch-Mokotoff Soundex in contrib/fuzzystrmatch. 2023-04-07 17:32:26 -04:00