// System.out.println("results "+results.keySet());
Pair<SortedMap<KeyExtent,Text>,List<KeyExtent>> metadata = MetadataTable.getMetadataLocationEntries(results);
for (Entry<KeyExtent,Text> entry : metadata.getFirst().entrySet()) {
list.add(new TabletLocation(entry.getKey(), entry.getValue().toString()));
}
return new TabletLocations(list, metadata.getSecond());
} catch (AccumuloServerException ase) {