Merges the operators in the incoming operPlan with this plan's operators. By merging I mean just making a combined graph with each one as a component It doesn't support merging of shared plans @param inpPlan @return this pointer @throws PlanException
(OperatorPlan<E> inpPlan)
| 428 | * @throws PlanException |
| 429 | */ |
| 430 | public OperatorPlan<E> merge(OperatorPlan<E> inpPlan) throws PlanException { |
| 431 | return doMerge(inpPlan, false); |
| 432 | } |
| 433 | |
| 434 | /** |
| 435 | * Merges the operators in the incoming plan with this plan's operators. |