mirror of
https://github.com/postgres/postgres.git
synced 2026-06-05 23:33:01 -04:00
16 lines
232 B
Plaintext
16 lines
232 B
Plaintext
--
|
|
-- 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';
|
|
|