Questions tagged [plperlu]
4 questions
2
votes
1 answer
Allowing unix user 'postgres' access to external .pm files for plperlu
I'm porting a Windows perl/postgresql web app to CentOS.
In postgresql.conf I have these lines:
custom_variable_classes = 'plperl' # list of custom variable class names
plperl.use_strict = on
plperl.on_plperlu_init = 'require…

Kev
- 15,899
- 15
- 79
- 112
0
votes
1 answer
PostgreSQL 15.3 / Plperl
I've installed PostgreSQL 15.3 on a clean windows 10 laptop with the v3 language pack and I've set the correct paths and environment variables. I can install pltcl and plpython3u languages on the database but plperl will not install. Its reporting…

Foxy
- 81
- 1
- 1
- 6
0
votes
0 answers
PostgreSQL plperlu compilation error: ERROR: didn't get a CODE reference from compiling function
I have created language plperlu in Postgres 9.3 (OS - UBUNTU 12.04.5), using below command
CREATE LANGUAGE plperlu;
I wanted to call shell script from postgres function So I written below function using plperlu.
Below is function
CREATE OR REPLACE…

GAK
- 1
- 1
0
votes
1 answer
Postgresql plperlu and encodings
I want to generate a PDF in plperlu, store it in the database and then add it to an email as an attachment.
I am using PDF::Report to generate the PDF. The code looks like this:-
CREATE OR REPLACE FUNCTION workflow.make_pdf(report_template json,…

user1331131
- 427
- 6
- 20