// This value points to the current LogicalRelationalOperator we are working on
protected LogicalRelationalOperator currentOp;
public ExpToPhyTranslationVisitor(OperatorPlan plan, LogicalRelationalOperator op, PhysicalPlan phyPlan,
Map<Operator, PhysicalOperator> map) throws FrontendException {
this(plan, new DependencyOrderWalker(plan), op, phyPlan, map);
}