File tree 1 file changed +4
-2
lines changed
src/test/regress/expected 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -197,13 +197,15 @@ drop operator === ();
197
197
ERROR: syntax error at or near ")" at character 20
198
198
-- no such operator
199
199
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.
201
202
-- no such operator by that name
202
203
drop operator === (int4, int4);
203
204
ERROR: operator does not exist: integer === integer
204
205
-- no such type1
205
206
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.
207
209
-- no such type1
208
210
drop operator = ( , int4);
209
211
ERROR: syntax error at or near "," at character 19
You can’t perform that action at this time.
0 commit comments