Thread: pgsql: Silence create_index regression test failure.
Silence create_index regression test failure. The expected output contained some floating point values which might get rounded slightly differently on different platforms. The exact output isn't very interesting in this test, so just round it. Per buildfarm member rover_firefly. Branch ------ master Details ------- http://git.postgresql.org/pg/commitdiff/9feaba28e27820f91d13c3de6581bb3b8c3234c6 Modified Files -------------- src/test/regress/expected/create_index.out | 26 +++++++++++++------------- src/test/regress/sql/create_index.sql | 2 +- 2 files changed, 14 insertions(+), 14 deletions(-)
Heikki Linnakangas <heikki.linnakangas@iki.fi> writes: > Silence create_index regression test failure. > The expected output contained some floating point values which might get > rounded slightly differently on different platforms. The exact output isn't > very interesting in this test, so just round it. rover_firefly was unhappy about two test cases, you only got one of them. regards, tom lane
On 05/15/2015 08:07 PM, Tom Lane wrote: > Heikki Linnakangas <heikki.linnakangas@iki.fi> writes: >> Silence create_index regression test failure. >> The expected output contained some floating point values which might get >> rounded slightly differently on different platforms. The exact output isn't >> very interesting in this test, so just round it. > > rover_firefly was unhappy about two test cases, you only got one of them. D'oh. Fixed, thanks. - Heikki