}
@Override
public void visit(LOSubtract op) throws VisitorException {
String scope = op.getOperatorKey().scope;
BinaryExpressionOperator exprOp = new Subtract(new OperatorKey(scope,
nodeGen.getNextNodeId(scope)), op.getRequestedParallelism());
exprOp.setResultType(op.getType());
exprOp.setLhs((ExpressionOperator) LogToPhyMap.get(op.getLhsOperand()));
exprOp.setRhs((ExpressionOperator) LogToPhyMap.get(op.getRhsOperand()));
LogicalPlan lp = op.getPlan();
currentPlan.add(exprOp);
LogToPhyMap.put(op, exprOp);