Package org.apache.drill.exec.store.mock

Examples of org.apache.drill.exec.store.mock.MockScanBatchCreator


  }


  private RecordBatch createMockScanBatch(Drillbit bit, MockSubScanPOP scanPOP) {
    List<RecordBatch> children = Lists.newArrayList();
    MockScanBatchCreator creator = new MockScanBatchCreator();

    try {
      FragmentContext context = new FragmentContext(bit.getContext(), BitControl.PlanFragment.getDefaultInstance(), null, bit.getContext().getFunctionImplementationRegistry());
      return creator.getBatch(context,scanPOP, children);
    } catch (Exception ex) {
      throw new DrillRuntimeException("Error when setup fragment context" + ex);
    }
  }
View Full Code Here

TOP

Related Classes of org.apache.drill.exec.store.mock.MockScanBatchCreator

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.