Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 320534f

Browse files
committed
Remove redundant perl version checks
Commit 4c15327 removed some redundant uses of 'use 5.008001;' in perl scripts, including in plperl's plc_perlboot.pl. Because it made other changes it wasn't backpatched. However, now this is causing a failure on back branches when built with bleeding edge perl. Therefore, backpatch just that part of it which removed those uses, from 15 all the way down to 9.2, which is the earliest version currently built in the buildfarm. per report from Alexander Lakhin Discussion: https://postgr.es/m/[email protected]
1 parent c18c12c commit 320534f

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/pl/plperl/plc_perlboot.pl

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
use strict;
44

5-
use 5.008001;
65
use vars qw(%_SHARED $_TD);
76

87
PostgreSQL::InServer::Util::bootstrap();

src/tools/pgindent/pgindent

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
use strict;
44
use warnings;
5-
use 5.008001;
65

76
use Cwd qw(abs_path getcwd);
87
use File::Find;

0 commit comments

Comments
 (0)