mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Update regression test for message change.
This commit is contained in:
parent
daed6f4b94
commit
d73e1b33b5
@ -197,13 +197,15 @@ drop operator === ();
|
|||||||
ERROR: syntax error at or near ")" at character 20
|
ERROR: syntax error at or near ")" at character 20
|
||||||
-- no such operator
|
-- no such operator
|
||||||
drop operator === (int4);
|
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
|
-- no such operator by that name
|
||||||
drop operator === (int4, int4);
|
drop operator === (int4, int4);
|
||||||
ERROR: operator does not exist: integer === integer
|
ERROR: operator does not exist: integer === integer
|
||||||
-- no such type1
|
-- no such type1
|
||||||
drop operator = (nonesuch);
|
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
|
-- no such type1
|
||||||
drop operator = ( , int4);
|
drop operator = ( , int4);
|
||||||
ERROR: syntax error at or near "," at character 19
|
ERROR: syntax error at or near "," at character 19
|
||||||
|
Loading…
Reference in New Issue
Block a user