Package org.apache.drill.exec.server.options

Examples of org.apache.drill.exec.server.options.DrillConfigIterator


    switch(table){
    case DRILLBITS:
      return new DrillbitIterator(context);
    case OPTION:

      return Iterables.concat((Iterable<Object>)(Object) new DrillConfigIterator(context.getConfig()), //
          context.getOptions()).iterator();
    default:
      throw new UnsupportedOperationException("Unable to create record iterator for table: " + table.getTableName());
    }
  }
View Full Code Here


      return new VersionIterator();
    case DRILLBITS:
      return new DrillbitIterator(context);
    case OPTION:

      return Iterables.concat((Iterable<Object>)(Object) new DrillConfigIterator(context.getConfig()), //
          context.getOptions()).iterator();
    default:
      throw new UnsupportedOperationException("Unable to create record iterator for table: " + table.getTableName());
    }
  }
View Full Code Here

TOP

Related Classes of org.apache.drill.exec.server.options.DrillConfigIterator

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.