aboutsummaryrefslogtreecommitdiff
path: root/src/test/regress/input/create_function_1.source
blob: ed90e5462680273b82f31413580c30f0c43d8af1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--
-- create.source
--
--

CREATE FUNCTION widget_in(opaque)
   RETURNS widget
   AS '_CWD_/regress_DLSUFFIX_'
   LANGUAGE 'c';

CREATE FUNCTION widget_out(opaque)
   RETURNS opaque
   AS '_CWD_/regress_DLSUFFIX_'
   LANGUAGE 'c';