for (int i = 0; i < numPartitions; i++) {
String filename = TableScanner.getSavepointFilename(i);
assertTrue(files.containsKey(filename));
File file = files.get(filename);
ReversedLinesFileReader reader = new ReversedLinesFileReader(file);
String line = reader.readLine();
// A null line is actually ok, that just means there were no results in that partition's token range this time around
if (line != null) {
foundAtLeastOneLine = true;
UUID savedUuid = UUID.fromString(line);
assertNotNull(savedUuid);