diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-06-13 07:35:40 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-06-13 07:35:40 +0000 |
| commit | f2d120532207b8873a5e74e7350dd2904f377289 (patch) | |
| tree | 992c89e023c4b29b42bf4fd6563de91f8d6ec8ca /src/test/regress/input/create_function_2.source | |
| parent | 8f057d971d663fff9bbb2ae7d053bf71cf09b4a2 (diff) | |
| download | postgresql-f2d120532207b8873a5e74e7350dd2904f377289.tar.gz | |
Another batch of fmgr updates. I think I have gotten all old-style
functions that take pass-by-value datatypes. Should be ready for
port testing ...
Diffstat (limited to 'src/test/regress/input/create_function_2.source')
| -rw-r--r-- | src/test/regress/input/create_function_2.source | 8 |
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 |
