From: Tom Lane Date: Thu, 8 Jul 2010 15:15:05 +0000 (+0000) Subject: Fix variant float8 expected files to have exactly the expected spacing. X-Git-Tag: REL9_0_BETA3~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7b81782be36230bb8a698744995f2c9360ba891f;p=postgresql 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. --- diff --git a/src/test/regress/expected/float8-small-is-zero.out b/src/test/regress/expected/float8-small-is-zero.out index 3037892ffe..6bddbc9290 100644 --- a/src/test/regress/expected/float8-small-is-zero.out +++ b/src/test/regress/expected/float8-small-is-zero.out @@ -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 diff --git a/src/test/regress/expected/float8-small-is-zero_1.out b/src/test/regress/expected/float8-small-is-zero_1.out index c48bb538c4..f48d280845 100644 --- a/src/test/regress/expected/float8-small-is-zero_1.out +++ b/src/test/regress/expected/float8-small-is-zero_1.out @@ -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