mirror of https://github.com/citusdata/citus.git
Add view as known-to-distribute object
parent
d76f254904
commit
b8f673ca91
|
@ -895,7 +895,9 @@ GetUndistributableDependency(const ObjectAddress *objectAddress)
|
||||||
{
|
{
|
||||||
char relKind = get_rel_relkind(dependency->objectId);
|
char relKind = get_rel_relkind(dependency->objectId);
|
||||||
|
|
||||||
if (relKind == RELKIND_SEQUENCE || relKind == RELKIND_COMPOSITE_TYPE)
|
if (relKind == RELKIND_SEQUENCE ||
|
||||||
|
relKind == RELKIND_COMPOSITE_TYPE ||
|
||||||
|
relKind == RELKIND_VIEW)
|
||||||
{
|
{
|
||||||
/* citus knows how to auto-distribute these dependencies */
|
/* citus knows how to auto-distribute these dependencies */
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in New Issue