From aa8a2866f39204a0e797c39ea98476fd5d04aa1b Mon Sep 17 00:00:00 2001 From: Onder Kalaci Date: Thu, 2 Jul 2020 13:44:56 +0200 Subject: [PATCH] Fix default value of EnableBinaryProtocol --- src/backend/distributed/executor/adaptive_executor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/distributed/executor/adaptive_executor.c b/src/backend/distributed/executor/adaptive_executor.c index cf1e568c3..9a3751435 100644 --- a/src/backend/distributed/executor/adaptive_executor.c +++ b/src/backend/distributed/executor/adaptive_executor.c @@ -442,7 +442,7 @@ struct TaskPlacementExecution; /* GUC, determining whether Citus opens 1 connection per task */ bool ForceMaxQueryParallelization = false; int MaxAdaptiveExecutorPoolSize = 16; -bool EnableBinaryProtocol = true; +bool EnableBinaryProtocol = false; /* GUC, number of ms to wait between opening connections to the same worker */ int ExecutorSlowStartInterval = 10;