}
@Override
public void visitStore(POStore op) throws VisitorException {
try {
POStoreTez store = new POStoreTez(op);
nonBlocking(store);
phyToTezOpMap.put(op, curTezOp);
if (store.getSFile()!=null && store.getSFile().getFuncSpec()!=null)
curTezOp.UDFs.add(store.getSFile().getFuncSpec().toString());
} catch (Exception e) {
int errCode = 2034;
String msg = "Error compiling operator " + op.getClass().getSimpleName();
throw new TezCompilerException(msg, errCode, PigException.BUG, e);
}