Package org.apache.drill.exec.physical.config

Examples of org.apache.drill.exec.physical.config.ComplexToJson


    return new ComplexToJsonPrel((Prel) sole(inputs));
  }

  @Override
  public PhysicalOperator getPhysicalOperator(PhysicalPlanCreator creator) throws IOException {
    ComplexToJson p = new ComplexToJson(((Prel) getChild()).getPhysicalOperator(creator));
    return creator.addMetadata(this, p);
  }
View Full Code Here


    return new ComplexToJsonPrel((Prel) sole(inputs));
  }

  @Override
  public PhysicalOperator getPhysicalOperator(PhysicalPlanCreator creator) throws IOException {
    ComplexToJson p = new ComplexToJson(((Prel) getChild()).getPhysicalOperator(creator));
    return creator.addMetadata(this, p);
  }
View Full Code Here

TOP

Related Classes of org.apache.drill.exec.physical.config.ComplexToJson

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.