use of org.apache.drill.exec.physical.config.UnorderedMuxExchange in project drill by apache.
the class UnorderedMuxExchangePrel method getPhysicalOperator.
@Override
public PhysicalOperator getPhysicalOperator(PhysicalPlanCreator creator) throws IOException {
Prel child = (Prel) this.getInput();
PhysicalOperator childPOP = child.getPhysicalOperator(creator);
UnorderedMuxExchange p = new UnorderedMuxExchange(childPOP);
return creator.addMetadata(this, p);
}
Aggregations