@ -2109,8 +2109,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
* errors properly . Perhaps it ' s because there ' s another level of eval
* inside mksafefunc ?
* inside mksafefunc ?
*/
*/
count = perl_ call_pv( " PostgreSQL::InServer::mkfunc " ,
count = call_pv ( " PostgreSQL::InServer::mkfunc " ,
G_SCALAR | G_EVAL | G_KEEPERR ) ;
G_SCALAR | G_EVAL | G_KEEPERR ) ;
SPAGAIN ;
SPAGAIN ;
if ( count = = 1 )
if ( count = = 1 )
@ -2215,7 +2215,7 @@ plperl_call_perl_func(plperl_proc_desc *desc, FunctionCallInfo fcinfo)
PUTBACK ;
PUTBACK ;
/* Do NOT use G_KEEPERR here */
/* 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 ;
SPAGAIN ;
@ -2283,7 +2283,7 @@ plperl_call_perl_trigger_func(plperl_proc_desc *desc, FunctionCallInfo fcinfo,
PUTBACK ;
PUTBACK ;
/* Do NOT use G_KEEPERR here */
/* 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 ;
SPAGAIN ;
@ -2346,7 +2346,7 @@ plperl_call_perl_event_trigger_func(plperl_proc_desc *desc,
PUTBACK ;
PUTBACK ;
/* Do NOT use G_KEEPERR here */
/* 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 ;
SPAGAIN ;