mirror of https://github.com/citusdata/citus.git
Merge pull request #3968 from citusdata/fix_bin_protocol
Fix default value of EnableBinaryProtocolpull/3958/head
commit
c0325d55d3
|
@ -442,7 +442,7 @@ struct TaskPlacementExecution;
|
||||||
/* GUC, determining whether Citus opens 1 connection per task */
|
/* GUC, determining whether Citus opens 1 connection per task */
|
||||||
bool ForceMaxQueryParallelization = false;
|
bool ForceMaxQueryParallelization = false;
|
||||||
int MaxAdaptiveExecutorPoolSize = 16;
|
int MaxAdaptiveExecutorPoolSize = 16;
|
||||||
bool EnableBinaryProtocol = true;
|
bool EnableBinaryProtocol = false;
|
||||||
|
|
||||||
/* GUC, number of ms to wait between opening connections to the same worker */
|
/* GUC, number of ms to wait between opening connections to the same worker */
|
||||||
int ExecutorSlowStartInterval = 10;
|
int ExecutorSlowStartInterval = 10;
|
||||||
|
|
Loading…
Reference in New Issue