Commit 7b81782b authored by Tom Lane's avatar Tom Lane

Fix variant float8 expected files to have exactly the expected spacing.

This wasn't important when we used diff's -w (--ignore-all-space) option
to compare regression result files, but it is now.  Per buildfarm member
canary, which evidently has been offline since we did that in November,
but came to life again today.
parent 44b0d167
......@@ -19,13 +19,13 @@ LINE 1: SELECT '-10e400'::float8;
SELECT '10e-400'::float8;
float8
--------
0
0
(1 row)
SELECT '-10e-400'::float8;
float8
--------
-0
-0
(1 row)
-- bad input
......
......@@ -19,13 +19,13 @@ LINE 1: SELECT '-10e400'::float8;
SELECT '10e-400'::float8;
float8
--------
0
0
(1 row)
SELECT '-10e-400'::float8;
float8
--------
0
0
(1 row)
-- bad input
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment