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 99dac79 commit d934df0Copy full SHA for d934df0
velox/exec/Driver.cpp
@@ -446,9 +446,9 @@ StopReason Driver::runInternal(
446
}
447
RuntimeStatWriterScopeGuard statsWriterGuard(op);
448
if (op->isFinished()) {
449
- auto timer =
450
- createDeltaCpuWallTimer([op](const CpuWallTiming& timing) {
451
- op->stats().wlock()->finishTiming.add(timing);
+ auto timer = createDeltaCpuWallTimer(
+ [nextOp](const CpuWallTiming& timing) {
+ nextOp->stats().wlock()->finishTiming.add(timing);
452
});
453
RuntimeStatWriterScopeGuard statsWriterGuard(nextOp);
454
TestValue::adjust(
0 commit comments