mirror of https://github.com/citusdata/citus.git
Check worker node existence before giving a warning message
parent
d669efccdb
commit
d76f254904
|
@ -102,7 +102,11 @@ PostprocessViewStmt(Node *node, const char *queryString)
|
|||
|
||||
if (errMsg != NULL)
|
||||
{
|
||||
RaiseDeferredError(errMsg, WARNING);
|
||||
if (HasAnyNodes())
|
||||
{
|
||||
RaiseDeferredError(errMsg, WARNING);
|
||||
}
|
||||
|
||||
return NIL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue