From 46c6e3b2a9f635359a3b223a7b25adaaa002cec1 Mon Sep 17 00:00:00 2001 From: Amit Dutta Date: Sun, 9 Jun 2024 00:21:01 -0700 Subject: [PATCH] [native] Minor cosmetic fixes. --- presto-native-execution/presto_cpp/main/PrestoTask.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/presto-native-execution/presto_cpp/main/PrestoTask.h b/presto-native-execution/presto_cpp/main/PrestoTask.h index 6a76a5734efe..89cb83da595f 100644 --- a/presto-native-execution/presto_cpp/main/PrestoTask.h +++ b/presto-native-execution/presto_cpp/main/PrestoTask.h @@ -98,13 +98,15 @@ struct PrestoTask { /// Time point (in ms) when the last message (any) came for this task. // TODO (spershin): Deprecate it, use only the 'lastCoordinatorHeartbeatMs'. uint64_t lastHeartbeatMs{0}; + /// Time point (in ms) when the last message came for this task from the /// Coordinator. Used to determine if the Task has been abandoned. uint64_t lastCoordinatorHeartbeatMs{0}; + /// Time point (in ms) when the time we updated Task stats. - uint64_t lastTaskStatsUpdateMs = {0}; + uint64_t lastTaskStatsUpdateMs{0}; - uint64_t lastMemoryReservation = {0}; + uint64_t lastMemoryReservation{0}; uint64_t createTimeMs{0}; uint64_t firstSplitStartTimeMs{0}; uint64_t lastEndTimeMs{0};