mirror of https://github.com/citusdata/citus.git
Disable deferred drop
parent
6e6342bb62
commit
40664743e6
|
@ -47,7 +47,7 @@
|
||||||
#include "postmaster/postmaster.h"
|
#include "postmaster/postmaster.h"
|
||||||
|
|
||||||
/* declarations for dynamic loading */
|
/* declarations for dynamic loading */
|
||||||
bool DeferShardDeleteOnSplit = true;
|
bool DeferShardDeleteOnSplit = false;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Entry for map that tracks ShardInterval -> Placement Node
|
* Entry for map that tracks ShardInterval -> Placement Node
|
||||||
|
|
|
@ -1023,7 +1023,7 @@ RegisterCitusConfigVariables(void)
|
||||||
"citus.defer_shard_delete_interval to make sure defered deletions "
|
"citus.defer_shard_delete_interval to make sure defered deletions "
|
||||||
"will be executed"),
|
"will be executed"),
|
||||||
&DeferShardDeleteOnSplit,
|
&DeferShardDeleteOnSplit,
|
||||||
true,
|
false,
|
||||||
PGC_USERSET,
|
PGC_USERSET,
|
||||||
0,
|
0,
|
||||||
NULL, NULL, NULL);
|
NULL, NULL, NULL);
|
||||||
|
|
Loading…
Reference in New Issue