pgsql: Avoid platform-dependent output from Data::Dumper.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Avoid platform-dependent output from Data::Dumper.
Date: 2018-06-18 18:53:30
Message-ID: E1fUzHO-0005Tt-DI@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Avoid platform-dependent output from Data::Dumper.

Per buildfarm, the output from Data::Dumper for an IEEE infinity
is platform-dependent (e.g. "inf" vs "Inf"). Just skip that one
test case in the plperlu test; testing it on the plperl side is
coverage enough. Fixes issue in commit 1731e3741.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/e4300a3552b104f54ec781dd23cfcf96252ec5c1

Modified Files
--------------
contrib/jsonb_plperl/expected/jsonb_plperlu.out | 6 ++----
contrib/jsonb_plperl/sql/jsonb_plperlu.sql | 3 ++-
2 files changed, 4 insertions(+), 5 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2018-06-18 19:32:13 pgsql: Allow plperl_sv_to_datum to look through scalar refs.
Previous Message Tom Lane 2018-06-18 18:31:48 pgsql: Fix excessive enreferencing in jsonb-to-plperl transform.