diff options
Diffstat (limited to 'src/test/regress')
| -rw-r--r-- | src/test/regress/expected/errors.out | 8 | ||||
| -rw-r--r-- | src/test/regress/output/create_function_2.source | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/test/regress/expected/errors.out b/src/test/regress/expected/errors.out index bd9707c2bd..56c8939c6f 100644 --- a/src/test/regress/expected/errors.out +++ b/src/test/regress/expected/errors.out @@ -137,7 +137,7 @@ drop aggregate 314159 (int); ERROR: parser: parse error at or near "314159" -- bad aggregate type drop aggregate newcnt (nonesuch); -ERROR: RemoveAggregate: type 'nonesuch' does not exist +ERROR: Type "nonesuch" does not exist -- no such aggregate drop aggregate nonesuch (int4); ERROR: RemoveAggregate: aggregate 'nonesuch' for type integer does not exist @@ -167,7 +167,7 @@ drop type 314159; ERROR: parser: parse error at or near "314159" -- no such type drop type nonesuch; -ERROR: RemoveType: type 'nonesuch' does not exist +ERROR: Type "nonesuch" does not exist -- -- DROP OPERATOR @@ -203,10 +203,10 @@ drop operator = ( , int4); ERROR: parser: parse error at or near "," -- no such type1 drop operator = (nonesuch, int4); -ERROR: RemoveOperator: type 'nonesuch' does not exist +ERROR: Type "nonesuch" does not exist -- no such type2 drop operator = (int4, nonesuch); -ERROR: RemoveOperator: type 'nonesuch' does not exist +ERROR: Type "nonesuch" does not exist -- no such type2 drop operator = (int4, ); ERROR: parser: parse error at or near ")" diff --git a/src/test/regress/output/create_function_2.source b/src/test/regress/output/create_function_2.source index 137242da70..4d508497cf 100644 --- a/src/test/regress/output/create_function_2.source +++ b/src/test/regress/output/create_function_2.source @@ -13,8 +13,8 @@ CREATE FUNCTION hobbies_by_name(hobbies_r.name%TYPE) RETURNS hobbies_r.person%TYPE AS 'select person from hobbies_r where name = $1' LANGUAGE 'sql'; -NOTICE: hobbies_r.name%TYPE converted to text NOTICE: hobbies_r.person%TYPE converted to text +NOTICE: hobbies_r.name%TYPE converted to text CREATE FUNCTION equipment(hobbies_r) RETURNS setof equipment_r AS 'select * from equipment_r where hobby = $1.name' |
