mirror of https://github.com/apache/druid.git
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…
Reference in New Issue