Get the operator with the given alias in the raw plan. Null if not found.
(String alias)
| 1593 | * found. |
| 1594 | */ |
| 1595 | Operator getOperator(String alias) throws FrontendException { |
| 1596 | return operators.get( alias ); |
| 1597 | } |
| 1598 | |
| 1599 | public LogicalPlan getPlan(String alias) throws IOException { |
| 1600 | LogicalPlan plan = lp; |
no test coverage detected