From a2fb5a84f108aacffafd3a2d63e797d098f1f7dc Mon Sep 17 00:00:00 2001 From: Jason Petersen Date: Thu, 16 Aug 2018 19:37:14 -0600 Subject: [PATCH] Disable JIT during PostgreSQL 11 test runs It's causing problems with one of our tests. --- src/test/regress/pg_regress_multi.pl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/test/regress/pg_regress_multi.pl b/src/test/regress/pg_regress_multi.pl index 05771a193..9ba5aff72 100755 --- a/src/test/regress/pg_regress_multi.pl +++ b/src/test/regress/pg_regress_multi.pl @@ -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