LUCENE-9888: revert CheckIndex change that confirmed all segments have identical segment sort: it is too strict

This commit is contained in:
Mike McCandless 2021-04-12 17:59:58 -04:00
parent 757da76919
commit b23e261786
1 changed files with 0 additions and 10 deletions

View File

@ -606,8 +606,6 @@ public final class CheckIndex implements Closeable {
result.newSegments.clear();
result.maxSegmentName = -1;
Sort previousIndexSort = null;
for (int i = 0; i < numSegments; i++) {
final SegmentCommitInfo info = sis.info(i);
long segmentName = Long.parseLong(info.info.name.substring(1), Character.MAX_RADIX);
@ -653,14 +651,6 @@ public final class CheckIndex implements Closeable {
Sort indexSort = info.info.getIndexSort();
if (indexSort != null) {
msg(infoStream, " sort=" + indexSort);
if (previousIndexSort != null) {
if (previousIndexSort.equals(indexSort) == false) {
throw new RuntimeException(
"index sort changed from " + previousIndexSort + " to " + indexSort);
}
} else {
previousIndexSort = indexSort;
}
}
segInfoStat.numFiles = info.files().size();
segInfoStat.sizeMB = info.sizeInBytes() / (1024. * 1024.);