Package org.apache.drill.exec.store.json

Examples of org.apache.drill.exec.store.json.JSONScanBatchCreator


    Preconditions.checkNotNull(context);

    if (subScan instanceof MockSubScanPOP) {
      return msc.getBatch(context, (MockSubScanPOP) subScan, Collections.<RecordBatch> emptyList());
    } else if (subScan instanceof JSONSubScan) {
      return new JSONScanBatchCreator().getBatch(context, (JSONSubScan) subScan, Collections.<RecordBatch> emptyList());
    } else if (subScan instanceof ParquetRowGroupScan) {
      return parquetScan.getBatch(context, (ParquetRowGroupScan) subScan, Collections.<RecordBatch> emptyList());
    } else {
      return super.visitSubScan(subScan, context);
    }
View Full Code Here

TOP

Related Classes of org.apache.drill.exec.store.json.JSONScanBatchCreator

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.