Re: [GENERAL] Use strict with plperl

2005-01-17 Thread Tom Lane
"Mike G." <[EMAIL PROTECTED]> writes: > In 8.0 how does one have a plperl function use strict? > If I add "use strict" within the function body I receive an error message: > "creation of Perl function failed: 'require' trapped by operation mask..." You'd have to use plperlu to be allowed to "use"

[GENERAL] Use strict with plperl

2005-01-17 Thread Mike G.
In 8.0 how does one have a plperl function use strict? If I add "use strict" within the function body I receive an error message: "creation of Perl function failed: 'require' trapped by operation mask..." If I do Create Function X AS Language 'plperl' strict volatile the function will comp