File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 8
8
#include "storage/pg_sema.h"
9
9
#include "storage/shmem.h"
10
10
#include "datatype/timestamp.h"
11
+ #include "utils/portal.h"
12
+ #include "tcop/pquery.h"
11
13
12
14
#include "bgwpool.h"
13
15
@@ -23,6 +25,9 @@ static void BgwPoolMainLoop(BgwPool* pool)
23
25
24
26
BackgroundWorkerUnblockSignals ();
25
27
BackgroundWorkerInitializeConnection (pool -> dbname , pool -> dbuser );
28
+ ActivePortal = CreatePortal ("" , true, true);
29
+ ActivePortal -> status = PORTAL_ACTIVE ;
30
+ ActivePortal -> sourceText = "" ;
26
31
27
32
while (true) {
28
33
PGSemaphoreLock (& pool -> available );
Original file line number Diff line number Diff line change @@ -81,6 +81,7 @@ if [ "$1" = 'postgres' ]; then
81
81
log_autovacuum_min_duration = 0
82
82
83
83
multimaster.workers = 4
84
+ multimaster.use_raftable = false
84
85
multimaster.max_nodes = 3
85
86
multimaster.use_raftable = true
86
87
multimaster.queue_size=52857600
You can’t perform that action at this time.
0 commit comments