Package org.apache.drill.exec.ref.rse.ClasspathRSE

Examples of org.apache.drill.exec.ref.rse.ClasspathRSE.ClasspathInputConfig


//
    @Override
    public DrillTable create(Schema schema, String name, Map<String, Object> operand, RelDataType rowType) {
     
      final ClasspathRSE.ClasspathRSEConfig rseConfig = new ClasspathRSE.ClasspathRSEConfig();
      final ClasspathInputConfig inputConfig = new ClasspathInputConfig();
      assert DONUTS_TABLES.contains(name)
          || HR_TABLES.contains(name)
          || FOODMART_TABLES.contains(name)
          : name;
      inputConfig.path = "/" + name.toLowerCase() + ".json";
View Full Code Here

TOP

Related Classes of org.apache.drill.exec.ref.rse.ClasspathRSE.ClasspathInputConfig

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.