projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
09c5f04
)
Keep perl style checker happy
author
Andrew Dunstan
Tue, 5 Feb 2019 20:16:55 +0000
(15:16 -0500)
committer
Andrew Dunstan
Tue, 5 Feb 2019 20:18:38 +0000
(15:18 -0500)
It doesn't like code before "use strict;".
src/backend/catalog/genbki.pl
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/catalog/genbki.pl
b/src/backend/catalog/genbki.pl
index 640ae71de57d3838db7f09370d70e2cb9f21fc45..01fcfb85a205f6f2709decf7c50e2784eb5ed4e5 100644
(file)
--- a/
src/backend/catalog/genbki.pl
+++ b/
src/backend/catalog/genbki.pl
@@
-14,15
+14,15
@@
#
#----------------------------------------------------------------------
+use strict;
+use warnings;
+
use File::Basename;
use File::Spec;
BEGIN { use lib File::Spec->rel2abs(dirname(__FILE__)); }
use Catalog;
-use strict;
-use warnings;
-
my @input_files;
our @include_path;
my $output_path = '';