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) {