From e62a1ab43df847a598672a962a42f009e51557e9 Mon Sep 17 00:00:00 2001 From: Jason Petersen Date: Thu, 30 Aug 2018 17:14:52 -0600 Subject: [PATCH] Revert "Disable JIT during PostgreSQL 11 test runs" This reverts commit a2fb5a84f108aacffafd3a2d63e797d098f1f7dc. 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. --- src/test/regress/pg_regress_multi.pl | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/test/regress/pg_regress_multi.pl b/src/test/regress/pg_regress_multi.pl index 9ba5aff72..05771a193 100755 --- a/src/test/regress/pg_regress_multi.pl +++ b/src/test/regress/pg_regress_multi.pl @@ -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.node_connection_timeout=${connectionTimeout}"); -if ($majorversion >= 11) -{ - push(@pgOptions, '-c', "jit=off"); -} - if ($useMitmproxy) { # make tests reproducible by never trying to negotiate ssl