use of org.apache.hadoop.hive.metastore.model.MPartition in project hive by apache.
the class ObjectStore method convertToParts.
private List<Partition> convertToParts(String dbName, String tblName, List<MPartition> mparts) throws MetaException {
List<Partition> parts = new ArrayList<Partition>(mparts.size());
for (MPartition mp : mparts) {
parts.add(convertToPart(dbName, tblName, mp));
Deadline.checkTimeout();
}
return parts;
}
Aggregations