summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2019-02-05 15:16:55 -0500
committerAndrew Dunstan <andrew@dunslane.net>2023-01-19 11:54:06 -0500
commit4c1f42f588917225db16f3a6de62411a51bf3037 (patch)
tree36190b49787155c8c00cc9637243c1a0c467bb06
parent9a561fd55fd74ae5cd72a93599e4c72768d891cd (diff)
downloadpostgresql-REL9_2_STABLE.tar.gz
Keep perl style checker happyREL9_2_STABLE
It doesn't like code before "use strict;". (cherry picked from commit ed2c2d063bd110f299211611b72a5dbe07a4d7be)
-rw-r--r--src/backend/catalog/genbki.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/catalog/genbki.pl b/src/backend/catalog/genbki.pl
index 2d96fbe5ef..943f7e467f 100644
--- 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 = '';