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