server/msplanner.py
changeset 392 bccd9a788f7a
parent 341 0a426be2f3a2
child 393 45a675515427
equal deleted inserted replaced
391:42693fe3ef6f 392:bccd9a788f7a
   362         for ovar, rel in self._linkedvars.get(var, ()):
   362         for ovar, rel in self._linkedvars.get(var, ()):
   363             if not var.scope is ovar.scope and rel.scope.neged(strict=True):
   363             if not var.scope is ovar.scope and rel.scope.neged(strict=True):
   364                 # can't get information from relation inside a NOT exists
   364                 # can't get information from relation inside a NOT exists
   365                 # where variables don't belong to the same scope
   365                 # where variables don't belong to the same scope
   366                 continue
   366                 continue
       
   367             if not (var.scope is rel.scope and ovar.scope is rel.scope) and rel.ored():
       
   368                 continue
   367             relsources = self._session.repo.rel_type_sources(rel.r_type)
   369             relsources = self._session.repo.rel_type_sources(rel.r_type)
   368             if rel.neged(strict=True) and (
   370             if rel.neged(strict=True) and (
   369                 len(relsources) < 2
   371                 len(relsources) < 2
   370                 or not isinstance(ovar, Variable)
   372                 or not isinstance(ovar, Variable)
   371                 or ovar.valuable_references() != 1
   373                 or ovar.valuable_references() != 1