diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2017-12-29 08:40:18 -0500 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2017-12-29 08:40:18 -0500 |
commit | 0aa1d489ea756b96b6d5573692ae9cd5d143c2a5 (patch) | |
tree | 947075fc22713ad37c9795b5a310cd2b4d5405af | |
parent | f83040c62a78e784e6e33a6382a55925bfd66634 (diff) | |
download | postgresql-0aa1d489ea756b96b6d5573692ae9cd5d143c2a5.tar.gz postgresql-0aa1d489ea756b96b6d5573692ae9cd5d143c2a5.zip |
Allow leading zero on exponents in pgbench test results
Following commit 7a727c18 this is found to be necessary on at least some
Windows platforms.
per buildfarm.
-rw-r--r-- | src/bin/pgbench/t/001_pgbench_with_server.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pgbench/t/001_pgbench_with_server.pl b/src/bin/pgbench/t/001_pgbench_with_server.pl index 9cbeb2fc111..3dd080e6e68 100644 --- a/src/bin/pgbench/t/001_pgbench_with_server.pl +++ b/src/bin/pgbench/t/001_pgbench_with_server.pl @@ -240,8 +240,8 @@ pgbench( qr{command=28.: double -0.125\b}, qr{command=29.: double -0.125\b}, qr{command=30.: double -0.00032\b}, - qr{command=31.: double 8.50705917302346e\+37\b}, - qr{command=32.: double 1e\+30\b}, + qr{command=31.: double 8.50705917302346e\+0?37\b}, + qr{command=32.: double 1e\+0?30\b}, ], 'pgbench expressions', { '001_pgbench_expressions' => q{-- integer functions |