aboutsummaryrefslogtreecommitdiff
path: root/src/pl/plperl/sql/plperl_init.sql
blob: d60268d033ecf8cc6ef636ed933a5d6983fd1bab (plain)
1
2
3
4
5
6
7
8
9
10
-- test plperl.on_plperl_init errors are fatal

-- This test tests setting on_plperl_init after loading plperl
LOAD 'plperl';

SET SESSION plperl.on_plperl_init = ' system("/nonesuch") ';

SHOW plperl.on_plperl_init;

DO $$ warn 42 $$ language plperl;