mirror of https://github.com/citusdata/citus.git
Not consider single shard hash dist. tables as replicated (#4413)
(cherry picked from commit 0eb5701658
)
pull/4578/head
parent
4a1255fd10
commit
a603ad9cbf
|
@ -465,7 +465,7 @@ SingleReplicatedTable(Oid relationId)
|
|||
List *shardPlacementList = NIL;
|
||||
|
||||
/* we could have append/range distributed tables without shards */
|
||||
if (list_length(shardList) <= 1)
|
||||
if (list_length(shardList) == 0)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue