Search in sources :

Example 1 with MetadataControllerPOP

use of org.apache.drill.exec.physical.config.MetadataControllerPOP in project drill by apache.

the class MetadataControllerPrel method getPhysicalOperator.

@Override
public PhysicalOperator getPhysicalOperator(PhysicalPlanCreator creator) throws IOException {
    Prel left = (Prel) this.getLeft();
    Prel right = (Prel) this.getRight();
    MetadataControllerPOP physicalOperator = new MetadataControllerPOP(left.getPhysicalOperator(creator), right.getPhysicalOperator(creator), context);
    return creator.addMetadata(this, physicalOperator);
}
Also used : MetadataControllerPOP(org.apache.drill.exec.physical.config.MetadataControllerPOP)

Aggregations

MetadataControllerPOP (org.apache.drill.exec.physical.config.MetadataControllerPOP)1