diff options
| author | Tom Lane | 2003-07-27 04:53:12 +0000 |
|---|---|---|
| committer | Tom Lane | 2003-07-27 04:53:12 +0000 |
| commit | b6a1d25b0aa179c86e0607d4c0c3b647dc5bbb87 (patch) | |
| tree | 7881c788c3f659b45eb371c0e40fbaf188051cb0 /src/test/regress/expected/float4-exp-three-digits.out | |
| parent | 524cfad23f31db70a23fc1fe748c050838d5fad0 (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.out | 8 |
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 ------+-------------- |
