File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
presto-native-execution/presto_cpp/main Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -590,10 +590,10 @@ void PrestoTask::updateExecutionInfoLocked(
590
590
prestoTaskStats.outputPositions = 0 ;
591
591
prestoTaskStats.outputDataSizeInBytes = 0 ;
592
592
593
- prestoTaskStats.totalDrivers = veloxTaskStats.numTotalSplits ;
594
- prestoTaskStats.queuedDrivers = veloxTaskStats.numQueuedSplits ;
595
- prestoTaskStats.runningDrivers = veloxTaskStats.numRunningSplits ;
596
- prestoTaskStats.completedDrivers = veloxTaskStats.numFinishedSplits ;
593
+ prestoTaskStats.queuedDrivers = veloxTaskStats.numQueuedDrivers ;
594
+ prestoTaskStats.totalDrivers = veloxTaskStats.numTotalDrivers ;
595
+ prestoTaskStats.runningDrivers = veloxTaskStats.numRunningDrivers ;
596
+ prestoTaskStats.completedDrivers = veloxTaskStats.numCompletedDrivers ;
597
597
598
598
prestoTaskStats.pipelines .resize (veloxTaskStats.pipelineStats .size ());
599
599
for (int i = 0 ; i < veloxTaskStats.pipelineStats .size (); ++i) {
You can’t perform that action at this time.
0 commit comments