MCPcopy Create free account
hub / github.com/apache/pig / insertBetween

Method insertBetween

src/org/apache/pig/impl/plan/OperatorPlan.java:575–580  ·  view source on GitHub ↗

Given two connected nodes add another node between them. 'newNode' will be placed in same position in predecessor list as 'before' (old node). @param after Node to insert this node after @param newNode new node to insert. This node must have already been added to the plan. @param before Node to ins

(
            E after,
            E newNode,
            E before)

Source from the content-addressed store, hash-verified

573 * connecting nodes.
574 */
575 public void insertBetween(
576 E after,
577 E newNode,
578 E before) throws PlanException {
579 doInsertBetween(after, newNode, before, true);
580 }
581
582 /*
583 * Private method to perform the insertBetween operation with the ability to turn off

Callers

nothing calls this directly

Calls 1

doInsertBetweenMethod · 0.95

Tested by

no test coverage detected