summaryrefslogtreecommitdiff
path: root/src/test/regress/expected/oid.out
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2003-09-25 06:58:07 +0000
committerPeter Eisentraut <peter_e@gmx.net>2003-09-25 06:58:07 +0000
commitfeb4f44d296b88b7f0723f4a4f3945a371276e0b (patch)
tree6acfa253cd3896fa96124fdcefdbc8e5cb5bb0da /src/test/regress/expected/oid.out
parent42013caf648ad4bd64b130efda760cdb1620e953 (diff)
downloadpostgresql-feb4f44d296b88b7f0723f4a4f3945a371276e0b.tar.gz
Message editing: remove gratuitous variations in message wording, standardize
terms, add some clarifications, fix some untranslatable attempts at dynamic message building.
Diffstat (limited to 'src/test/regress/expected/oid.out')
-rw-r--r--src/test/regress/expected/oid.out4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/expected/oid.out b/src/test/regress/expected/oid.out
index cbf722b26d..f3fc452587 100644
--- a/src/test/regress/expected/oid.out
+++ b/src/test/regress/expected/oid.out
@@ -10,9 +10,9 @@ INSERT INTO OID_TBL(f1) VALUES ('99999999');
INSERT INTO OID_TBL(f1) VALUES ('');
-- bad inputs
INSERT INTO OID_TBL(f1) VALUES ('asdfasd');
-ERROR: invalid input syntax for OID: "asdfasd"
+ERROR: invalid input syntax for type "oid": "asdfasd"
INSERT INTO OID_TBL(f1) VALUES ('99asdfasd');
-ERROR: invalid input syntax for OID: "99asdfasd"
+ERROR: invalid input syntax for type "oid": "99asdfasd"
SELECT '' AS six, OID_TBL.*;
six | f1
-----+------------