summaryrefslogtreecommitdiff
path: root/src/test/regress/expected/int2.out
diff options
context:
space:
mode:
authorPeter Eisentraut2003-09-25 06:58:07 +0000
committerPeter Eisentraut2003-09-25 06:58:07 +0000
commitfeb4f44d296b88b7f0723f4a4f3945a371276e0b (patch)
tree6acfa253cd3896fa96124fdcefdbc8e5cb5bb0da /src/test/regress/expected/int2.out
parent42013caf648ad4bd64b130efda760cdb1620e953 (diff)
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/int2.out')
-rw-r--r--src/test/regress/expected/int2.out2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/regress/expected/int2.out b/src/test/regress/expected/int2.out
index 35ebcb6c267..6da403c3e7a 100644
--- a/src/test/regress/expected/int2.out
+++ b/src/test/regress/expected/int2.out
@@ -14,7 +14,7 @@ INSERT INTO INT2_TBL(f1) VALUES ('32767');
INSERT INTO INT2_TBL(f1) VALUES ('-32767');
-- bad input values -- should give warnings
INSERT INTO INT2_TBL(f1) VALUES ('100000');
-ERROR: 100000 is out of range for int2
+ERROR: value "100000" is out of range for type shortint
INSERT INTO INT2_TBL(f1) VALUES ('asdf');
ERROR: invalid input syntax for integer: "asdf"
SELECT '' AS five, INT2_TBL.*;