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 cbaa882 commit 9104343Copy full SHA for 9104343
velox/exec/Driver.cpp
@@ -466,9 +466,9 @@ StopReason Driver::runInternal(
466
}
467
RuntimeStatWriterScopeGuard statsWriterGuard(op);
468
if (op->isFinished()) {
469
- auto timer =
470
- createDeltaCpuWallTimer([op](const CpuWallTiming& timing) {
471
- op->stats().wlock()->finishTiming.add(timing);
+ auto timer = createDeltaCpuWallTimer(
+ [nextOp](const CpuWallTiming& timing) {
+ nextOp->stats().wlock()->finishTiming.add(timing);
472
});
473
RuntimeStatWriterScopeGuard statsWriterGuard(nextOp);
474
TestValue::adjust(
0 commit comments