aboutsummaryrefslogtreecommitdiff
path: root/contrib/jsonb_plperl/sql
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/jsonb_plperl/sql')
-rw-r--r--contrib/jsonb_plperl/sql/jsonb_plperlu.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/jsonb_plperl/sql/jsonb_plperlu.sql b/contrib/jsonb_plperl/sql/jsonb_plperlu.sql
index 49c71fbc441..907dd4f73c8 100644
--- a/contrib/jsonb_plperl/sql/jsonb_plperlu.sql
+++ b/contrib/jsonb_plperl/sql/jsonb_plperlu.sql
@@ -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');