pgsql: Attempt to fix endianess issues in new hash partition test.

From: Andres Freund <andres(at)anarazel(dot)de>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Attempt to fix endianess issues in new hash partition test.
Date: 2018-04-07 03:18:35
Message-ID: E1f4eN9-0001CV-Cp@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Attempt to fix endianess issues in new hash partition test.

The tests added as part of 9fdb675fc5 yield differing results
depending on endianess, causing buildfarm failures. As the differences
are expected, split the hash partitioning tests into a different file
and maintain alternative output. The separate file is so the amount of
duplicated output is reduced.

David produced the alternative output without a machine to test on, so
it's possible this'll require a buildfarm cycle or two to get right.

Author: David Rowley
Discussion: https://postgr.es/m/CAKJS1f-6f4c2Qhuipe-GY7BKmFd0FMBobRnLS7hVCoAmTszsBg@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/40e42e1024c580a50483d788b3f68668da750c64

Modified Files
--------------
src/test/regress/expected/partition_prune.out | 185 --------------------
src/test/regress/expected/partition_prune_hash.out | 189 +++++++++++++++++++++
.../regress/expected/partition_prune_hash_1.out | 187 ++++++++++++++++++++
src/test/regress/parallel_schedule | 2 +-
src/test/regress/serial_schedule | 1 +
src/test/regress/sql/partition_prune.sql | 37 ----
src/test/regress/sql/partition_prune_hash.sql | 41 +++++
7 files changed, 419 insertions(+), 223 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Andres Freund 2018-04-07 04:03:09 pgsql: Blindly attempt to fix sepgsql tests broken due to 9fdb675fc5.
Previous Message Andres Freund 2018-04-07 03:07:53 pgsql: Fix and improve pg_atomic_flag fallback implementation.