Package org.apache.drill.common.defs

Examples of org.apache.drill.common.defs.PartitionDef


   * Build a Store operator and validate each field
   */
  @Test
  public void testBuild() {
    String storageEngine = "mock-storage";
    PartitionDef partition = new PartitionDef(PartitionDef.PartitionType.RANGE, null, null);
    JSONOptions target = null;

    Store storeOp = Store.builder()
        .storageEngine(storageEngine)
        .partition(partition)
View Full Code Here

TOP

Related Classes of org.apache.drill.common.defs.PartitionDef

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.