summaryrefslogtreecommitdiff
path: root/src/pl/plperl/plperl.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2022-01-31 15:01:05 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2022-01-31 15:01:05 -0500
commitbc89af248e04fc07c1c15eb2d3c743a22691c667 (patch)
treed949a7cde49a6de103ffb3b1e40d2f12072ff24b /src/pl/plperl/plperl.c
parent4afb5aeb9f1285bd3ff2b370671c7ad5a91445c9 (diff)
plperl: update ppport.h to Perl 5.34.0.
Also apply the changes suggested by running perl ppport.h --compat-version=5.8.0 And remove some no-longer-required NEED_foo declarations. Dagfinn Ilmari Mannsåker Back-patch of commit 05798c9f7 into all supported branches. At the time we thought this update was mostly cosmetic, but the lack of it has caused trouble, while the patch itself hasn't. Discussion: https://postgr.es/m/87y278s6iq.fsf@wibble.ilmari.org Discussion: https://postgr.es/m/20220131015130.shn6wr2fzuymerf6@alap3.anarazel.de
Diffstat (limited to 'src/pl/plperl/plperl.c')
-rw-r--r--src/pl/plperl/plperl.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/pl/plperl/plperl.c b/src/pl/plperl/plperl.c
index fe60baa8914..842d8eecdec 100644
--- a/src/pl/plperl/plperl.c
+++ b/src/pl/plperl/plperl.c
@@ -2114,8 +2114,8 @@ plperl_create_sub(plperl_proc_desc *prodesc, const char *s, Oid fn_oid)
* errors properly. Perhaps it's because there's another level of eval
* inside mksafefunc?
*/
- count = perl_call_pv("PostgreSQL::InServer::mkfunc",
- G_SCALAR | G_EVAL | G_KEEPERR);
+ count = call_pv("PostgreSQL::InServer::mkfunc",
+ G_SCALAR | G_EVAL | G_KEEPERR);
SPAGAIN;
if (count == 1)
@@ -2220,7 +2220,7 @@ plperl_call_perl_func(plperl_proc_desc *desc, FunctionCallInfo fcinfo)
PUTBACK;
/* Do NOT use G_KEEPERR here */
- count = perl_call_sv(desc->reference, G_SCALAR | G_EVAL);
+ count = call_sv(desc->reference, G_SCALAR | G_EVAL);
SPAGAIN;
@@ -2288,7 +2288,7 @@ plperl_call_perl_trigger_func(plperl_proc_desc *desc, FunctionCallInfo fcinfo,
PUTBACK;
/* Do NOT use G_KEEPERR here */
- count = perl_call_sv(desc->reference, G_SCALAR | G_EVAL);
+ count = call_sv(desc->reference, G_SCALAR | G_EVAL);
SPAGAIN;
@@ -2351,7 +2351,7 @@ plperl_call_perl_event_trigger_func(plperl_proc_desc *desc,
PUTBACK;
/* Do NOT use G_KEEPERR here */
- count = perl_call_sv(desc->reference, G_SCALAR | G_EVAL);
+ count = call_sv(desc->reference, G_SCALAR | G_EVAL);
SPAGAIN;