diff options
| author | Bruce Momjian <bruce@momjian.us> | 1998-01-05 03:35:55 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1998-01-05 03:35:55 +0000 |
| commit | 0d9fc5afd6eda651d2ef0a4776e08f02d32a96de (patch) | |
| tree | c9f5ac32c61569ba21fc66cf28d383e3972d2199 /src/test/regress/expected/float8.out | |
| parent | 0af9137f14f46a0affba6e57343a76a1e832172f (diff) | |
| download | postgresql-0d9fc5afd6eda651d2ef0a4776e08f02d32a96de.tar.gz | |
Change elog(WARN) to elog(ERROR) and elog(ABORT).
Diffstat (limited to 'src/test/regress/expected/float8.out')
| -rw-r--r-- | src/test/regress/expected/float8.out | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/test/regress/expected/float8.out b/src/test/regress/expected/float8.out index b14cc49dd1..facfac9d70 100644 --- a/src/test/regress/expected/float8.out +++ b/src/test/regress/expected/float8.out @@ -5,13 +5,13 @@ QUERY: INSERT INTO FLOAT8_TBL(f1) VALUES ('-34.84'); QUERY: INSERT INTO FLOAT8_TBL(f1) VALUES ('1.2345678901234e+200'); QUERY: INSERT INTO FLOAT8_TBL(f1) VALUES ('1.2345678901234e-200'); QUERY: INSERT INTO FLOAT8_TBL(f1) VALUES ('10e400'); -WARN:Bad float8 input format '10e400' +ERROR: Bad float8 input format '10e400' QUERY: INSERT INTO FLOAT8_TBL(f1) VALUES ('-10e400'); -WARN:Bad float8 input format '-10e400' +ERROR: Bad float8 input format '-10e400' QUERY: INSERT INTO FLOAT8_TBL(f1) VALUES ('10e-400'); -WARN:Bad float8 input format '10e-400' +ERROR: Bad float8 input format '10e-400' QUERY: INSERT INTO FLOAT8_TBL(f1) VALUES ('-10e-400'); -WARN:Bad float8 input format '-10e-400' +ERROR: Bad float8 input format '-10e-400' QUERY: SELECT '' AS five, FLOAT8_TBL.*; five|f1 ----+-------------------- @@ -195,13 +195,13 @@ QUERY: UPDATE FLOAT8_TBL SET f1 = FLOAT8_TBL.f1 * '-1' WHERE FLOAT8_TBL.f1 > '0.0'; QUERY: SELECT '' AS bad, f.f1 * '1e200' from FLOAT8_TBL f; -WARN:Bad float8 input format -- overflow +ERROR: Bad float8 input format -- overflow QUERY: SELECT '' AS bad, f.f1 ^ '1e200' from FLOAT8_TBL f; -WARN:pow() result is out of range +ERROR: pow() result is out of range QUERY: SELECT '' AS bad, (; (f.f1)) from FLOAT8_TBL f where f.f1 = '0.0' ; -WARN:can't take log of zero +ERROR: can't take log of zero QUERY: SELECT '' AS bad, (; (f.f1)) from FLOAT8_TBL f where f.f1 < '0.0' ; -WARN:can't take log of a negative number +ERROR: can't take log of a negative number QUERY: SELECT '' AS bad, : (f.f1) from FLOAT8_TBL f; bad| ?column? ---+-------------------- @@ -213,7 +213,7 @@ bad| ?column? (5 rows) QUERY: SELECT '' AS bad, f.f1 / '0.0' from FLOAT8_TBL f; -WARN:float8div: divide by zero error +ERROR: float8div: divide by zero error QUERY: SELECT '' AS five, FLOAT8_TBL.*; five|f1 ----+--------------------- |
