@Override
public void visit(LOStore loStore) throws FrontendException {
String scope = DEFAULT_SCOPE;
// System.err.println("Entering Store");
POStore store = new POStore(new OperatorKey(scope, nodeGen
.getNextNodeId(scope)));
store.setAlias(((LogicalRelationalOperator)loStore.getPlan().
getPredecessors(loStore).get(0)).getAlias());
store.setSFile(loStore.getOutputSpec());
store.setInputSpec(loStore.getInputSpec());
store.setSignature(loStore.getSignature());
store.setSortInfo(loStore.getSortInfo());
store.setIsTmpStore(loStore.isTmpStore());
store.setSchema(Util.translateSchema( loStore.getSchema() ));
currentPlan.add(store);
List<Operator> op = loStore.getPlan().getPredecessors(loStore);
PhysicalOperator from = null;