diff options
author | Andrew Gierth <rhodiumtoad@postgresql.org> | 2019-02-13 20:38:54 +0000 |
---|---|---|
committer | Andrew Gierth <rhodiumtoad@postgresql.org> | 2019-02-13 20:42:57 +0000 |
commit | 80c468b4a454881b56e1c73c6fedcb2978c5b415 (patch) | |
tree | a69904bde4bde7d7cb752ed030cecd10f44ecc52 /src | |
parent | d0b4663c23b7a6ae6f489c4d7a2f58f879914959 (diff) | |
download | postgresql-80c468b4a454881b56e1c73c6fedcb2978c5b415.tar.gz postgresql-80c468b4a454881b56e1c73c6fedcb2978c5b415.zip |
Remove a stray subnormal value from float tests.
We don't care to assume that input of subnormal float values works,
but a stray subnormal value from the upstream Ryu regression test had
been left in the test data by mistake. Remove it.
Per buildfarm member fulmar.
Diffstat (limited to 'src')
-rw-r--r-- | src/test/regress/expected/float4-misrounded-input.out | 4 | ||||
-rw-r--r-- | src/test/regress/expected/float4.out | 4 | ||||
-rw-r--r-- | src/test/regress/sql/float4.sql | 1 |
3 files changed, 2 insertions, 7 deletions
diff --git a/src/test/regress/expected/float4-misrounded-input.out b/src/test/regress/expected/float4-misrounded-input.out index 54de939a6e8..2e63422615f 100644 --- a/src/test/regress/expected/float4-misrounded-input.out +++ b/src/test/regress/expected/float4-misrounded-input.out @@ -624,7 +624,6 @@ with testdata(bits) as (values (x'4c000001'), (x'4c800b0d'), (x'00d24584'), - (x'800000b0'), (x'00d90b88'), (x'45803f34'), (x'4f9f24f7'), @@ -899,7 +898,6 @@ select float4send(flt) as ibits, \x4c000001 | 3.3554436e+07 | 3.3554436e+07 | \x4c000001 | t \x4c800b0d | 6.7131496e+07 | 6.7131496e+07 | \x4c800b0d | t \x00d24584 | 1.9310392e-38 | 1.9310392e-38 | \x00d24584 | t - \x800000b0 | -2.47e-43 | -2.47e-43 | \x800000b0 | t \x00d90b88 | 1.993244e-38 | 1.993244e-38 | \x00d90b88 | t \x45803f34 | 4103.9004 | 4103.9004 | \x45803f34 | t \x4f9f24f7 | 5.3399997e+09 | 5.3399997e+09 | \x4f9f24f7 | t @@ -930,7 +928,7 @@ select float4send(flt) as ibits, \x3f9e064b | 1.234567 | 1.234567 | \x3f9e064b | t \x3f9e0651 | 1.2345678 | 1.2345678 | \x3f9e0651 | t \x03d20cfe | 1.23456735e-36 | 1.23456735e-36 | \x03d20cfe | t -(262 rows) +(261 rows) -- clean up, lest opr_sanity complain \set VERBOSITY terse diff --git a/src/test/regress/expected/float4.out b/src/test/regress/expected/float4.out index dff19219440..cf782771ba5 100644 --- a/src/test/regress/expected/float4.out +++ b/src/test/regress/expected/float4.out @@ -624,7 +624,6 @@ with testdata(bits) as (values (x'4c000001'), (x'4c800b0d'), (x'00d24584'), - (x'800000b0'), (x'00d90b88'), (x'45803f34'), (x'4f9f24f7'), @@ -899,7 +898,6 @@ select float4send(flt) as ibits, \x4c000001 | 3.3554436e+07 | 3.3554436e+07 | \x4c000001 | t \x4c800b0d | 6.7131496e+07 | 6.7131496e+07 | \x4c800b0d | t \x00d24584 | 1.9310392e-38 | 1.9310392e-38 | \x00d24584 | t - \x800000b0 | -2.47e-43 | -2.47e-43 | \x800000b0 | t \x00d90b88 | 1.993244e-38 | 1.993244e-38 | \x00d90b88 | t \x45803f34 | 4103.9004 | 4103.9004 | \x45803f34 | t \x4f9f24f7 | 5.3399997e+09 | 5.3399997e+09 | \x4f9f24f7 | t @@ -930,7 +928,7 @@ select float4send(flt) as ibits, \x3f9e064b | 1.234567 | 1.234567 | \x3f9e064b | t \x3f9e0651 | 1.2345678 | 1.2345678 | \x3f9e0651 | t \x03d20cfe | 1.23456735e-36 | 1.23456735e-36 | \x03d20cfe | t -(262 rows) +(261 rows) -- clean up, lest opr_sanity complain \set VERBOSITY terse diff --git a/src/test/regress/sql/float4.sql b/src/test/regress/sql/float4.sql index d606e7787b8..646027fe00b 100644 --- a/src/test/regress/sql/float4.sql +++ b/src/test/regress/sql/float4.sql @@ -301,7 +301,6 @@ with testdata(bits) as (values (x'4c000001'), (x'4c800b0d'), (x'00d24584'), - (x'800000b0'), (x'00d90b88'), (x'45803f34'), (x'4f9f24f7'), |