Skip to content

Commit d73e1b3

Browse files
committed
Update regression test for message change.
1 parent daed6f4 commit d73e1b3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/test/regress/expected/errors.out

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,13 +197,15 @@ drop operator === ();
197197
ERROR: syntax error at or near ")" at character 20
198198
-- no such operator
199199
drop operator === (int4);
200-
ERROR: argument type missing (use NONE for unary operators)
200+
ERROR: missing argument
201+
HINT: Use NONE to denote the missing argument of a unary operator.
201202
-- no such operator by that name
202203
drop operator === (int4, int4);
203204
ERROR: operator does not exist: integer === integer
204205
-- no such type1
205206
drop operator = (nonesuch);
206-
ERROR: argument type missing (use NONE for unary operators)
207+
ERROR: missing argument
208+
HINT: Use NONE to denote the missing argument of a unary operator.
207209
-- no such type1
208210
drop operator = ( , int4);
209211
ERROR: syntax error at or near "," at character 19

0 commit comments

Comments
 (0)