aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2003-09-15 23:25:31 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2003-09-15 23:25:31 +0000
commitd73e1b33b57eb4244e43f7f03ce1a2b91d6697b9 (patch)
tree8fa97c04237fcdeed2dc82619c6d32dbb21214bb /src
parentdaed6f4b945cd21796a8b6efc8c660497eb8bb6e (diff)
downloadpostgresql-d73e1b33b57eb4244e43f7f03ce1a2b91d6697b9.tar.gz
postgresql-d73e1b33b57eb4244e43f7f03ce1a2b91d6697b9.zip
Update regression test for message change.
Diffstat (limited to 'src')
-rw-r--r--src/test/regress/expected/errors.out6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/test/regress/expected/errors.out b/src/test/regress/expected/errors.out
index 2a6c5ff044f..936001de51e 100644
--- a/src/test/regress/expected/errors.out
+++ b/src/test/regress/expected/errors.out
@@ -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