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