For a given operator, get all operators immediately before it in the plan. @param op operator to fetch predecessors of @return list of all operators immediately before op, or an empty list if op is a root.
(Operator op)
| 64 | * if op is a root. |
| 65 | */ |
| 66 | public List<Operator> getPredecessors(Operator op); |
| 67 | |
| 68 | /** |
| 69 | * For a given operator, get all operators immediately after it. |
no outgoing calls