aboutsummaryrefslogtreecommitdiff
path: root/src/pl/plperl/sql/plperl_call.sql
blob: bd2b63b4185e5300104b40f35f03622dfd6c0ccb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
CREATE PROCEDURE test_proc1()
LANGUAGE plperl
AS $$
undef;
$$;

CALL test_proc1();


CREATE PROCEDURE test_proc2()
LANGUAGE plperl
AS $$
return 5
$$;

CALL test_proc2();


CREATE TABLE test1 (a int);

CREATE PROCEDURE test_proc3(x int)
LANGUAGE plperl
AS $$
spi_exec_query("INSERT INTO test1 VALUES ($_[0])");
$$;

CALL test_proc3(55);

SELECT * FROM test1;


DROP PROCEDURE test_proc1;
DROP PROCEDURE test_proc2;
DROP PROCEDURE test_proc3;

DROP TABLE test1;