Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 7b81782

Browse files
committed
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.
1 parent 44b0d16 commit 7b81782

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/test/regress/expected/float8-small-is-zero.out

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ LINE 1: SELECT '-10e400'::float8;
1919
SELECT '10e-400'::float8;
2020
float8
2121
--------
22-
0
22+
0
2323
(1 row)
2424

2525
SELECT '-10e-400'::float8;
2626
float8
2727
--------
28-
-0
28+
-0
2929
(1 row)
3030

3131
-- bad input

src/test/regress/expected/float8-small-is-zero_1.out

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ LINE 1: SELECT '-10e400'::float8;
1919
SELECT '10e-400'::float8;
2020
float8
2121
--------
22-
0
22+
0
2323
(1 row)
2424

2525
SELECT '-10e-400'::float8;
2626
float8
2727
--------
28-
0
28+
0
2929
(1 row)
3030

3131
-- bad input

0 commit comments

Comments
 (0)