Package eu.stratosphere.compiler.plan

Examples of eu.stratosphere.compiler.plan.NAryUnionPlanNode


          // collapsing
          List<Channel> inputs = new ArrayList<Channel>();
          collect(in1, inputs);
          collect(in2, inputs);
         
          newUnionNode = new NAryUnionPlanNode(unionNode.getOptimizerNode(), inputs, unionNode.getGlobalProperties());
         
          // adjust the input channels to have their target point to the new union node
          for (Channel c : inputs) {
            c.setTarget(newUnionNode);
          }
View Full Code Here

TOP

Related Classes of eu.stratosphere.compiler.plan.NAryUnionPlanNode

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.