summaryrefslogtreecommitdiff
path: root/src/test/regress/expected/float4-exp-three-digits.out
diff options
context:
space:
mode:
authorTom Lane2003-07-27 04:53:12 +0000
committerTom Lane2003-07-27 04:53:12 +0000
commitb6a1d25b0aa179c86e0607d4c0c3b647dc5bbb87 (patch)
tree7881c788c3f659b45eb371c0e40fbaf188051cb0 /src/test/regress/expected/float4-exp-three-digits.out
parent524cfad23f31db70a23fc1fe748c050838d5fad0 (diff)
Error message editing in utils/adt. Again thanks to Joe Conway for doing
the bulk of the heavy lifting ...
Diffstat (limited to 'src/test/regress/expected/float4-exp-three-digits.out')
-rw-r--r--src/test/regress/expected/float4-exp-three-digits.out8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/regress/expected/float4-exp-three-digits.out b/src/test/regress/expected/float4-exp-three-digits.out
index 72751ae29e9..db982a43db0 100644
--- a/src/test/regress/expected/float4-exp-three-digits.out
+++ b/src/test/regress/expected/float4-exp-three-digits.out
@@ -9,13 +9,13 @@ INSERT INTO FLOAT4_TBL(f1) VALUES ('1.2345678901234e+20');
INSERT INTO FLOAT4_TBL(f1) VALUES ('1.2345678901234e-20');
-- test for over and under flow
INSERT INTO FLOAT4_TBL(f1) VALUES ('10e40');
-ERROR: Bad float4 input format -- overflow
+ERROR: float4 value out of range: overflow
INSERT INTO FLOAT4_TBL(f1) VALUES ('-10e40');
-ERROR: Bad float4 input format -- overflow
+ERROR: float4 value out of range: overflow
INSERT INTO FLOAT4_TBL(f1) VALUES ('10e-40');
-ERROR: Bad float4 input format -- underflow
+ERROR: float4 value out of range: underflow
INSERT INTO FLOAT4_TBL(f1) VALUES ('-10e-40');
-ERROR: Bad float4 input format -- underflow
+ERROR: float4 value out of range: underflow
SELECT '' AS five, FLOAT4_TBL.*;
five | f1
------+--------------