Skip to content

Commit

Permalink
LUCENE-9981: more efficient getCommonSuffix/Prefix, and more accurate…
Browse files Browse the repository at this point in the history
… 'effort limit', instead of precise output state limit, during determinize, for throwing TooComplexToDeterminizeException
  • Loading branch information
mikemccand committed Jun 25, 2021
1 parent c1c1491 commit 62d2753
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4784,7 +4784,7 @@ public int length() {
(mergeState.mergeFieldInfos.hasNorms() ? "norms" : "no norms") + "; " +
(mergeState.mergeFieldInfos.hasDocValues() ? "docValues" : "no docValues") + "; " +
(mergeState.mergeFieldInfos.hasProx() ? "prox" : "no prox") + "; " +
(mergeState.mergeFieldInfos.hasProx() ? "freqs" : "no freqs") + "; " +
(mergeState.mergeFieldInfos.hasFreq() ? "freqs" : "no freqs") + "; " +
(mergeState.mergeFieldInfos.hasPointValues() ? "points" : "no points") + "; " +
String.format(Locale.ROOT,
"%.1f sec%s to merge segment [%.2f MB, %.2f MB/sec]",
Expand Down

0 comments on commit 62d2753

Please sign in to comment.