mirror of https://github.com/citusdata/citus.git
Merge pull request #3001 from citusdata/fix_add_node_func
Make sure that functions are also listed in `SupportedDependencyByCitus`pull/2990/head
commit
ff100b2720
|
@ -339,6 +339,11 @@ SupportedDependencyByCitus(const ObjectAddress *address)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case OCLASS_PROC:
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
case OCLASS_TYPE:
|
case OCLASS_TYPE:
|
||||||
{
|
{
|
||||||
switch (get_typtype(address->objectId))
|
switch (get_typtype(address->objectId))
|
||||||
|
|
|
@ -1974,7 +1974,7 @@ count
|
||||||
run_command_on_workers
|
run_command_on_workers
|
||||||
|
|
||||||
(localhost,57637,t,1)
|
(localhost,57637,t,1)
|
||||||
(localhost,57638,t,0)
|
(localhost,57638,t,1)
|
||||||
master_remove_node
|
master_remove_node
|
||||||
|
|
||||||
|
|
||||||
|
@ -2103,7 +2103,7 @@ count
|
||||||
run_command_on_workers
|
run_command_on_workers
|
||||||
|
|
||||||
(localhost,57637,t,1)
|
(localhost,57637,t,1)
|
||||||
(localhost,57638,t,0)
|
(localhost,57638,t,1)
|
||||||
master_remove_node
|
master_remove_node
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue