We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3404496 commit 77f0d1fCopy full SHA for 77f0d1f
lucene/grouping/src/java/org/apache/lucene/search/grouping/FirstPassGroupingCollector.java
@@ -131,7 +131,7 @@ public Collection<SearchGroup<T>> getTopGroups(int groupOffset) throws IOExcepti
131
buildSortedSet();
132
}
133
134
- final Collection<SearchGroup<T>> result = new ArrayList<>();
+ final Collection<SearchGroup<T>> result = new ArrayList<>(orderedGroups.size() - groupOffset);
135
int upto = 0;
136
final int sortFieldCount = comparators.length;
137
for (CollectedSearchGroup<T> group : orderedGroups) {
0 commit comments