tajo-core/tajo-core-backend/src/main/java/org/apache/tajo/master/LazyTaskScheduler.java [502:513]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private boolean checkIfInterQuery(MasterPlan masterPlan, ExecutionBlock block) {
    if (masterPlan.isRoot(block)) {
      return false;
    }

    ExecutionBlock parent = masterPlan.getParent(block);
    if (masterPlan.isRoot(parent) && parent.hasUnion()) {
      return false;
    }

    return true;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tajo-core/tajo-core-backend/src/main/java/org/apache/tajo/master/DefaultTaskScheduler.java [825:836]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private boolean checkIfInterQuery(MasterPlan masterPlan, ExecutionBlock block) {
      if (masterPlan.isRoot(block)) {
        return false;
      }

      ExecutionBlock parent = masterPlan.getParent(block);
      if (masterPlan.isRoot(parent) && parent.hasUnion()) {
        return false;
      }

      return true;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



