Make any necessary changes to a node based on a change of position in the plan. This allows operators to rewire their projections, etc. when they are relocated in a plan. @param oldPred Operator that was previously the predecessor. @param oldPredIndex position of the old prede
(Operator<V> oldPred, int oldPredIndex,
Operator<V> newPred, boolean useOldPred)
| 170 | * @throws PlanException |
| 171 | */ |
| 172 | public void rewire(Operator<V> oldPred, int oldPredIndex, |
| 173 | Operator<V> newPred, boolean useOldPred) throws PlanException { |
| 174 | //TODO |
| 175 | //this method should be made abstract in the future |
| 176 | if (oldPred == null) { |
| 177 | return; |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | } |
no outgoing calls
no test coverage detected