summaryrefslogtreecommitdiff
path: root/src/test/regress/output/create_function_1.source
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-08-18 03:00:17 +0000
committerBruce Momjian <bruce@momjian.us>2002-08-18 03:00:17 +0000
commit4b26e7d24bda2d4de00cab1ddb482241487872c0 (patch)
treefe2186939bedb6a771fd106916006950ebf54a30 /src/test/regress/output/create_function_1.source
parentc9a524000d02a60c5f7d689a24baca7b04773f0a (diff)
downloadpostgresql-4b26e7d24bda2d4de00cab1ddb482241487872c0.tar.gz
More changes to match new error format.
Diffstat (limited to 'src/test/regress/output/create_function_1.source')
-rw-r--r--src/test/regress/output/create_function_1.source2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/regress/output/create_function_1.source b/src/test/regress/output/create_function_1.source
index 2f59a69331..2c98b6c2ea 100644
--- a/src/test/regress/output/create_function_1.source
+++ b/src/test/regress/output/create_function_1.source
@@ -40,7 +40,7 @@ CREATE FUNCTION test1 (int) RETURNS int LANGUAGE sql
ERROR: return type mismatch in function: declared to return integer, returns "unknown"
CREATE FUNCTION test1 (int) RETURNS int LANGUAGE sql
AS 'not even SQL';
-ERROR: parser: parse error at or near "not"
+ERROR: parser: parse error at or near "not" at character 1
CREATE FUNCTION test1 (int) RETURNS int LANGUAGE sql
AS 'SELECT 1, 2, 3;';
ERROR: function declared to return integer returns multiple columns in final SELECT