diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2018-02-27 15:15:35 -0500 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2018-02-27 15:15:35 -0500 |
| commit | c40e20a83ce521b5b5403b08dde05b0f0641d77f (patch) | |
| tree | c28a0614f74338e1ffd3cf5d4bb87aadbafba3cc /src/test/regress/output/create_function_1.source | |
| parent | 6614aaa699bcff77fbcbc349fc678b8bfb060b9a (diff) | |
| download | postgresql-c40e20a83ce521b5b5403b08dde05b0f0641d77f.tar.gz | |
Revert renaming of int44in/int44out.
This seemed like a good idea in commit be42eb9d6, but it causes more
trouble than it's worth for cross-branch upgrade testing.
Discussion: https://postgr.es/m/11927.1519756619@sss.pgh.pa.us
Diffstat (limited to 'src/test/regress/output/create_function_1.source')
| -rw-r--r-- | src/test/regress/output/create_function_1.source | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/output/create_function_1.source b/src/test/regress/output/create_function_1.source index 18d2a15016..8c50d9b309 100644 --- a/src/test/regress/output/create_function_1.source +++ b/src/test/regress/output/create_function_1.source @@ -12,13 +12,13 @@ CREATE FUNCTION widget_out(widget) AS '@libdir@/regress@DLSUFFIX@' LANGUAGE C STRICT IMMUTABLE; NOTICE: argument type widget is only a shell -CREATE FUNCTION city_budget_in(cstring) +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 city_budget_out(city_budget) +CREATE FUNCTION int44out(city_budget) RETURNS cstring AS '@libdir@/regress@DLSUFFIX@' LANGUAGE C STRICT IMMUTABLE; |
