diff options
author | Daniel Gustafsson <dgustafsson@postgresql.org> | 2024-10-09 09:34:34 +0200 |
---|---|---|
committer | Daniel Gustafsson <dgustafsson@postgresql.org> | 2024-10-09 09:34:34 +0200 |
commit | c4528fdfa903c74cf99837a554bd3c7e115bb366 (patch) | |
tree | 6a4dc6e5164037461e5727fdc4cf0a8a88b72443 | |
parent | 97354286619904bbfd2607b14f3f0d01926e95d0 (diff) | |
download | postgresql-c4528fdfa903c74cf99837a554bd3c7e115bb366.tar.gz postgresql-c4528fdfa903c74cf99837a554bd3c7e115bb366.zip |
Remove incorrect function import from pgindent
Commit 149ac7d4559 which re-implemented pgindent in Perl explicitly
imported the devnull function from File::Spec, but the module does
not export anything. In recent versions of Perl calling a missing
import function cause a warning, which combined with warnings being
fatal cause pgindent to error out.
Backpatch to all supported versions.
Author: Erik Wienhold <ewie@ewie.name>
Reviewed-by: Andrew Dunstan <andrew@dunslane.net>
Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
Discusson: https://postgr.es/m/2372cd74-11b0-46f9-b28e-8f9627215d19@ewie.name
Backpatch-through: v12
-rwxr-xr-x | src/tools/pgindent/pgindent | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/pgindent/pgindent b/src/tools/pgindent/pgindent index 77c8118e5d7..e889af6b1e4 100755 --- a/src/tools/pgindent/pgindent +++ b/src/tools/pgindent/pgindent @@ -7,7 +7,7 @@ use warnings FATAL => 'all'; use Cwd qw(abs_path getcwd); use File::Find; -use File::Spec qw(devnull); +use File::Spec; use File::Temp; use IO::Handle; use Getopt::Long; |