@Override
public PhysicalOperator visitOp(PhysicalOperator op, FragmentContext context) throws ExecutionSetupException{
List<PhysicalOperator> newChildren = Lists.newArrayList();
List<PhysicalOperator> list = null;
PhysicalOperator newOp = op;
/* Get the list of child operators */
for (PhysicalOperator child : op)
{
newChildren.add(child.accept(this, context));
}
list = Lists.newArrayList();
/* For every child operator create a trace operator as its parent */
for (int i = 0; i < newChildren.size(); i++)
{
String traceTag = newChildren.get(i).toString() + Integer.toString(traceTagCount++);
/* Trace operator */
Trace traceOp = new Trace(newChildren.get(i), traceTag);
list.add(traceOp);
}
/* Inject trace operator */
if (list.size() > 0)
newOp = op.getNewWithChildren(list);
newOp.setOperatorId(op.getOperatorId());
return newOp;
}