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

Method trimBelow

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

Trim everything below a given operator. The specified operator will NOT be removed. @param op Operator to trim everything after.

(E op)

Source from the content-addressed store, hash-verified

273 * @param op Operator to trim everything after.
274 */
275 public void trimBelow(E op) {
276 trimBelow(getSuccessors(op));
277 }
278
279 private void trimBelow(List<E> ops) {
280 if (ops != null) {

Callers 6

visitMergeJoinMethod · 0.45
launchPigMethod · 0.45
updateMROpPlanMethod · 0.45
visitMergeJoinMethod · 0.45
visitMergeJoinMethod · 0.45
updatePlanMethod · 0.45

Calls 2

getSuccessorsMethod · 0.95
removeMethod · 0.95

Tested by

no test coverage detected