d.add(L);
if ((int) L >= this.file.size()) continue; // prevent IndexOutOfBoundsException
this.file.get((int) L, b, 0); // TODO: fix IndexOutOfBoundsException here
inconsistentEntry = this.rowdef.newEntry(b);
try {
rows.addUnique(inconsistentEntry);
} catch (final RowSpaceExceededException e) {
if (this.table == null) throw e;
this.table = null;
rows.addUnique(inconsistentEntry);
}