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 bfa3db5 commit 05fc058Copy full SHA for 05fc058
velox/exec/Driver.cpp
@@ -423,9 +423,9 @@ StopReason Driver::runInternal(
423
}
424
RuntimeStatWriterScopeGuard statsWriterGuard(op);
425
if (op->isFinished()) {
426
- auto timer =
427
- createDeltaCpuWallTimer([op](const CpuWallTiming& timing) {
428
- op->stats().wlock()->finishTiming.add(timing);
+ auto timer = createDeltaCpuWallTimer(
+ [nextOp](const CpuWallTiming& timing) {
+ nextOp->stats().wlock()->finishTiming.add(timing);
429
});
430
RuntimeStatWriterScopeGuard statsWriterGuard(nextOp);
431
nextOp->noMoreInput();
0 commit comments