mirror of https://github.com/apache/druid.git
Fix bug in numRowsScanned
This commit is contained in:
parent
da4fc66403
commit
219af478c8
|
@ -259,9 +259,9 @@ public class ScanQueryRunnerFactory implements QueryRunnerFactory<ScanResultValu
|
||||||
Interval finalInterval = null;
|
Interval finalInterval = null;
|
||||||
while (!doneScanning) {
|
while (!doneScanning) {
|
||||||
ScanResultValue next = yielder.get();
|
ScanResultValue next = yielder.get();
|
||||||
numRowsScanned++;
|
|
||||||
List<ScanResultValue> singleEventScanResultValues = next.toSingleEventScanResultValues();
|
List<ScanResultValue> singleEventScanResultValues = next.toSingleEventScanResultValues();
|
||||||
for (ScanResultValue srv : singleEventScanResultValues) {
|
for (ScanResultValue srv : singleEventScanResultValues) {
|
||||||
|
numRowsScanned++;
|
||||||
// Using an intermediate unbatched ScanResultValue is not that great memory-wise, but the column list
|
// Using an intermediate unbatched ScanResultValue is not that great memory-wise, but the column list
|
||||||
// needs to be preserved for queries using the compactedList result format
|
// needs to be preserved for queries using the compactedList result format
|
||||||
q.offer(srv);
|
q.offer(srv);
|
||||||
|
|
Loading…
Reference in New Issue