mirror of
https://github.com/apache/druid.git
synced 2025-02-17 15:35:56 +00:00
stupid mistake
This commit is contained in:
parent
17d32a2561
commit
70468400bf
@ -165,8 +165,8 @@ public class PooledTopNAlgorithm
|
||||
}
|
||||
|
||||
final int nAggregators = theAggregators.length;
|
||||
final int extra = nAggregators - (nAggregators % 4) - 1;
|
||||
final int ub = (nAggregators / 4) * 4;
|
||||
final int extra = nAggregators - nAggregators % 4;
|
||||
final int ub = ((nAggregators / 4) * 4) - 1;
|
||||
|
||||
while (!cursor.isDone()) {
|
||||
final IndexedInts dimValues = dimSelector.getRow();
|
||||
|
Loading…
x
Reference in New Issue
Block a user