pgsql: Remove redundant perl version checks

From: Andrew Dunstan <andrew(at)dunslane(dot)net>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Remove redundant perl version checks
Date: 2024-06-26 11:34:31
Message-ID: [email protected]
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Remove redundant perl version checks

Commit 4c1532763a 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]

Branch
------
REL9_2_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/1c417311692a15aca0c295e1570e93b6f84ae82a

Modified Files
--------------
src/pl/plperl/plc_perlboot.pl | 1 -
1 file changed, 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Alvaro Herrera 2024-06-26 11:43:46 pgsql: Fix partition pruning setup during DETACH CONCURRENTLY
Previous Message Tom Lane 2024-06-25 21:54:01 pgsql: Improve comment in gram.y.