Commit d73e1b33 authored by Tom Lane's avatar Tom Lane

Update regression test for message change.

parent daed6f4b
......@@ -197,13 +197,15 @@ drop operator === ();
ERROR: syntax error at or near ")" at character 20
-- no such operator
drop operator === (int4);
ERROR: argument type missing (use NONE for unary operators)
ERROR: missing argument
HINT: Use NONE to denote the missing argument of a unary operator.
-- no such operator by that name
drop operator === (int4, int4);
ERROR: operator does not exist: integer === integer
-- no such type1
drop operator = (nonesuch);
ERROR: argument type missing (use NONE for unary operators)
ERROR: missing argument
HINT: Use NONE to denote the missing argument of a unary operator.
-- no such type1
drop operator = ( , int4);
ERROR: syntax error at or near "," at character 19
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment