Package org.apache.gora.query

Examples of org.apache.gora.query.PartitionQuery


    List<InputSplit> splits = getInputSplits();

    Assert.assertTrue(splits.size() > 0);

    InputSplit split = splits.get(0);
    PartitionQuery query = ((GoraInputSplit)split).getQuery();
    Assert.assertTrue(Arrays.equals(Employee._ALL_FIELDS, query.getFields()));
  }
View Full Code Here


    List<InputSplit> splits = getInputSplits();

    assertTrue(splits.size() > 0);

    InputSplit split = splits.get(0);
    PartitionQuery query = ((GoraInputSplit)split).getQuery();
    assertTrue(Arrays.equals(getEmployeeFieldNames(), query.getFields()));
  }
View Full Code Here

TOP

Related Classes of org.apache.gora.query.PartitionQuery

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.