mirror of https://github.com/citusdata/citus.git
Disable JIT during PostgreSQL 11 test runs
It's causing problems with one of our tests.pull/2341/head
parent
54789d6896
commit
a2fb5a84f1
|
@ -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.shard_replication_factor=2");
|
||||||
push(@pgOptions, '-c', "citus.node_connection_timeout=${connectionTimeout}");
|
push(@pgOptions, '-c', "citus.node_connection_timeout=${connectionTimeout}");
|
||||||
|
|
||||||
|
if ($majorversion >= 11)
|
||||||
|
{
|
||||||
|
push(@pgOptions, '-c', "jit=off");
|
||||||
|
}
|
||||||
|
|
||||||
if ($useMitmproxy)
|
if ($useMitmproxy)
|
||||||
{
|
{
|
||||||
# make tests reproducible by never trying to negotiate ssl
|
# make tests reproducible by never trying to negotiate ssl
|
||||||
|
|
Loading…
Reference in New Issue