mirror of https://github.com/citusdata/citus.git
Reset autoConverted field for cache
parent
6ef8075bdd
commit
e695e04219
|
@ -3697,6 +3697,7 @@ ResetCitusTableCacheEntry(CitusTableCacheEntry *cacheEntry)
|
|||
cacheEntry->hasUninitializedShardInterval = false;
|
||||
cacheEntry->hasUniformHashDistribution = false;
|
||||
cacheEntry->hasOverlappingShardInterval = false;
|
||||
cacheEntry->autoConverted = false;
|
||||
|
||||
pfree(cacheEntry);
|
||||
}
|
||||
|
|
|
@ -63,7 +63,7 @@ typedef struct
|
|||
char partitionMethod;
|
||||
uint32 colocationId;
|
||||
char replicationModel;
|
||||
bool autoConverted;
|
||||
bool autoConverted; /* table auto-added to metadata, valid for citus local tables */
|
||||
|
||||
/* pg_dist_shard metadata (variable-length ShardInterval array) for this table */
|
||||
int shardIntervalArrayLength;
|
||||
|
|
Loading…
Reference in New Issue