mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
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
.
This commit is contained in:
@ -61,7 +61,8 @@ $$;
|
||||
|
||||
SELECT roundtrip('null') is null;
|
||||
SELECT roundtrip('1');
|
||||
SELECT roundtrip('1E+131071');
|
||||
-- skip because Data::Dumper produces a platform-dependent spelling of infinity
|
||||
-- SELECT roundtrip('1E+131071');
|
||||
SELECT roundtrip('-1');
|
||||
SELECT roundtrip('1.2');
|
||||
SELECT roundtrip('-1.2');
|
||||
|
Reference in New Issue
Block a user