Disable JIT during PostgreSQL 11 test runs

It's causing problems with one of our tests.
pull/2341/head
Jason Petersen 2018-08-16 19:37:14 -06:00
parent 54789d6896
commit a2fb5a84f1
No known key found for this signature in database
GPG Key ID: 9F1D3510D110ABA9
1 changed files with 5 additions and 0 deletions

View File

@ -313,6 +313,11 @@ push(@pgOptions, '-c', "citus.remote_task_check_interval=1ms");
push(@pgOptions, '-c', "citus.shard_replication_factor=2");
push(@pgOptions, '-c', "citus.node_connection_timeout=${connectionTimeout}");
if ($majorversion >= 11)
{
push(@pgOptions, '-c', "jit=off");
}
if ($useMitmproxy)
{
# make tests reproducible by never trying to negotiate ssl