Package org.apache.drill.exec.planner.logical

Examples of org.apache.drill.exec.planner.logical.DrillViewTable


      try {
        files = DotDrillUtil.getDotDrills(fs, new Path(config.getLocation()), name, DotDrillType.VIEW);
        for(DotDrillFile f : files){
          switch(f.getType()){
          case VIEW:
            return new DrillViewTable(schemaPath, getView(f));
          }
        }
      } catch (Exception e) {
        logger.warn("Failure while trying to load .drill file.", e);
      }
View Full Code Here


      try {
        files = DotDrillUtil.getDotDrills(fs, new Path(config.getLocation()), name, DotDrillType.VIEW);
        for(DotDrillFile f : files) {
          switch(f.getType()) {
          case VIEW:
            return new DrillViewTable(schemaPath, getView(f));
          }
        }
      } catch (UnsupportedOperationException e) {
        logger.debug("The filesystem for this workspace does not support this operation.", e);
      } catch (Exception e) {
View Full Code Here

TOP

Related Classes of org.apache.drill.exec.planner.logical.DrillViewTable

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.