GraphWalker ogw = new PreOrderWalker(disp);
// Create a list of topop nodes
ArrayList<Node> topNodes = new ArrayList<Node>();
topNodes.addAll(pctx.getTopOps().values());
ogw.startWalking(topNodes, null);
// Transfer the index from the lineage context to the session state.
if (SessionState.get() != null) {
SessionState.get().getLineageState().setIndex(lCtx.getIndex());
}