diff options
Diffstat (limited to 'src/test/regress/output/create_function_1.source')
-rw-r--r-- | src/test/regress/output/create_function_1.source | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/test/regress/output/create_function_1.source b/src/test/regress/output/create_function_1.source new file mode 100644 index 0000000..616b610 --- /dev/null +++ b/src/test/regress/output/create_function_1.source @@ -0,0 +1,26 @@ +-- +-- CREATE_FUNCTION_1 +-- +-- Create C functions needed by create_type.sql +CREATE FUNCTION widget_in(cstring) + RETURNS widget + AS '@libdir@/regress@DLSUFFIX@' + LANGUAGE C STRICT IMMUTABLE; +NOTICE: type "widget" is not yet defined +DETAIL: Creating a shell type definition. +CREATE FUNCTION widget_out(widget) + RETURNS cstring + AS '@libdir@/regress@DLSUFFIX@' + LANGUAGE C STRICT IMMUTABLE; +NOTICE: argument type widget is only a shell +CREATE FUNCTION int44in(cstring) + RETURNS city_budget + AS '@libdir@/regress@DLSUFFIX@' + LANGUAGE C STRICT IMMUTABLE; +NOTICE: type "city_budget" is not yet defined +DETAIL: Creating a shell type definition. +CREATE FUNCTION int44out(city_budget) + RETURNS cstring + AS '@libdir@/regress@DLSUFFIX@' + LANGUAGE C STRICT IMMUTABLE; +NOTICE: argument type city_budget is only a shell |