postgresql/contrib/test_decoding
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 Add STREAM_START/STREAM_STOP for transactional messages during decoding. 2023-10-30 14:36:21 +05:30
specs Remove incidental md5() function uses from several tests 2023-07-04 14:31:57 +02:00
sql Add flush option to pg_logical_emit_message() 2023-10-18 11:24:59 +09:00
t Make all Perl warnings fatal 2023-12-29 18:20:00 +01:00
.gitignore Improve isolation tests infrastructure. 2017-03-14 15:56:17 -07:00
Makefile Fix catalog lookup with the wrong snapshot during logical decoding. 2022-08-11 10:09:24 +05:30
logical.conf Stabilize streaming tests in test_decoding. 2022-04-20 08:59:55 +05:30
meson.build Update copyright for 2023 2023-01-02 15:00:37 -05:00
test_decoding.c Add STREAM_START/STREAM_STOP for transactional messages during decoding. 2023-10-30 14:36:21 +05:30