diff options
Diffstat (limited to 'src/test/regress/expected/float8.out')
-rw-r--r-- | src/test/regress/expected/float8.out | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/test/regress/expected/float8.out b/src/test/regress/expected/float8.out index df6ec9c58c7..6221538af5c 100644 --- a/src/test/regress/expected/float8.out +++ b/src/test/regress/expected/float8.out @@ -24,25 +24,6 @@ SELECT '-10e-400'::float8; ERROR: "-10e-400" is out of range for type double precision LINE 1: SELECT '-10e-400'::float8; ^ --- test whether denormalized values are accepted -SELECT '4.95e-324'::float8 < '1.49e-323'::float8; - ?column? ----------- - t -(1 row) - -SELECT '4.95e-324'::float8 > '0'::float8; - ?column? ----------- - t -(1 row) - -SELECT substr('-4.95e-324'::float8::text, 1, 4); - substr --------- - -4.9 -(1 row) - -- bad input INSERT INTO FLOAT8_TBL(f1) VALUES (''); ERROR: invalid input syntax for type double precision: "" |