mirror of https://github.com/citusdata/citus.git
Check on cache value, not catalog
parent
9cbb33a448
commit
21a184f2e7
|
@ -171,7 +171,8 @@ ShouldUndistributeCitusLocalTable(Oid relationId)
|
|||
*/
|
||||
return false;
|
||||
}
|
||||
if (!AutoConvertedViaCatalog(relationOid))
|
||||
CitusTableCacheEntry *cacheEntry = GetCitusTableCacheEntry(relationOid);
|
||||
if (!cacheEntry->autoConverted)
|
||||
{
|
||||
/*
|
||||
* The relation is connected to a (or, is a) Citus Local Table created
|
||||
|
|
Loading…
Reference in New Issue