summaryrefslogtreecommitdiff
path: root/src/test/regress/input/create_function_2.source
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/regress/input/create_function_2.source')
-rw-r--r--src/test/regress/input/create_function_2.source8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/regress/input/create_function_2.source b/src/test/regress/input/create_function_2.source
index a135a8fa9c..a8742b7d20 100644
--- a/src/test/regress/input/create_function_2.source
+++ b/src/test/regress/input/create_function_2.source
@@ -28,9 +28,9 @@ CREATE FUNCTION user_relns()
LANGUAGE 'sql';
CREATE FUNCTION pt_in_widget(point, widget)
- RETURNS int4
+ RETURNS bool
AS '_OBJWD_/regress_DLSUFFIX_'
- LANGUAGE 'c';
+ LANGUAGE 'newC';
CREATE FUNCTION overpaid(emp)
RETURNS bool
@@ -38,9 +38,9 @@ CREATE FUNCTION overpaid(emp)
LANGUAGE 'newC';
CREATE FUNCTION boxarea(box)
- RETURNS int4
+ RETURNS float8
AS '_OBJWD_/regress_DLSUFFIX_'
- LANGUAGE 'c';
+ LANGUAGE 'newC';
CREATE FUNCTION interpt_pp(path, path)
RETURNS point