mirror of https://github.com/citusdata/citus.git
Revert "Disable JIT during PostgreSQL 11 test runs"
This reverts commit a2fb5a84f1
.
JIT wasn't actually interfering with the operation of Citus, a test was
just written in a way which caused JIT to run for a function on every
row in a 150k-row table.
pull/2356/head
parent
26178f72d3
commit
e62a1ab43d
|
@ -313,11 +313,6 @@ 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