diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2018-10-19 14:00:17 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2018-10-19 14:00:17 -0400 |
commit | e65e8f8218e3b99534f01bd5e67b1e6ec99e6f7e (patch) | |
tree | 9e85a253035c85f656e7ee4dce33f72d5c2b5570 /src | |
parent | d55241af705667d4503638e3f77d3689fd6be31d (diff) | |
download | postgresql-e65e8f8218e3b99534f01bd5e67b1e6ec99e6f7e.tar.gz postgresql-e65e8f8218e3b99534f01bd5e67b1e6ec99e6f7e.zip |
Silence perlcritic warning about missing return.
Per buildfarm member crake.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_verify_checksums/t/002_actions.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bin/pg_verify_checksums/t/002_actions.pl b/src/bin/pg_verify_checksums/t/002_actions.pl index a9003b14cc8..ff4772708b5 100644 --- a/src/bin/pg_verify_checksums/t/002_actions.pl +++ b/src/bin/pg_verify_checksums/t/002_actions.pl @@ -109,6 +109,8 @@ sub fail_corrupt [qr/^$/], [qr/could not read block/], "fails for corrupted data in $file"); + + return; } # Authorized relation files filled with corrupted data cause the |