if (!indexValues.isEmpty()) {
IndexEntry lastAllocated = (IndexEntry) indexValues.lastKey();
if (last == null) {
last = lastAllocated;
}
else if (lastAllocated.compareTo(last) > 0) {
last = lastAllocated;
}
}
else if (last == null) {
return anyIndex(sessionID, testOnly);