Skip to content

Commit

Permalink
Merge pull request #17213 from pveentjer/v3.12/performance/17207-pagi…
Browse files Browse the repository at this point in the history
…ng-predicate

[Backport] Resolved performance problem with PagingPredicate JDK8
  • Loading branch information
pveentjer committed Jul 23, 2020
2 parents 67f9456 + 8d0be00 commit ee49d7f
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -32,7 +32,6 @@
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.ListIterator;
import java.util.Map;
Expand Down Expand Up @@ -60,7 +59,7 @@
*/
public class QueryResult implements Result<QueryResult>, Iterable<QueryResultRow> {

private List rows = new LinkedList();
private List rows = new ArrayList();

private Collection<Integer> partitionIds;
private IterationType iterationType;
Expand Down

0 comments on commit ee49d7f

Please sign in to comment.