mirror of
https://github.com/postgres/postgres.git
synced 2025-06-04 12:42:24 +03:00
16 lines
236 B
Plaintext
16 lines
236 B
Plaintext
--
|
|
-- create.source
|
|
--
|
|
--
|
|
|
|
CREATE FUNCTION circle_in(opaque)
|
|
RETURNS circle
|
|
AS '_OBJWD_/regress_DLSUFFIX_'
|
|
LANGUAGE 'c';
|
|
|
|
CREATE FUNCTION circle_out(opaque)
|
|
RETURNS opaque
|
|
AS '_OBJWD_/regress_DLSUFFIX_'
|
|
LANGUAGE 'c';
|
|
|