This is an automated email from the ASF dual-hosted git repository. mrhhsg pushed a commit to branch spill_and_reserve in repository https://gitbox.apache.org/repos/asf/doris.git
commit 957d7b50f2b1d2923456d820c60f13a6c8b5ba40 Author: yiguolei <[email protected]> AuthorDate: Fri Oct 11 15:48:55 2024 +0800 fix bug time --- be/src/runtime/query_context.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/be/src/runtime/query_context.cpp b/be/src/runtime/query_context.cpp index 48005c4daf8..1f6f44af2e3 100644 --- a/be/src/runtime/query_context.cpp +++ b/be/src/runtime/query_context.cpp @@ -530,11 +530,11 @@ std::string QueryContext::debug_string() { "QueryId={}, Memory [Used={}, Limit={}, Peak={}], " "Spill[RunningSpillTaskCnt={}, TotalPausedPeriodSecs={}, " "MemorySufficient={}, LatestPausedReason={}]", - query_mem_tracker->label(), + print_id(_query_id), PrettyPrinter::print(query_mem_tracker->consumption(), TUnit::BYTES), PrettyPrinter::print(query_mem_tracker->limit(), TUnit::BYTES), PrettyPrinter::print(query_mem_tracker->peak_consumption(), TUnit::BYTES), - _revoking_tasks_count, _memory_sufficient_dependency->ready(), _paused_period_secs, + _revoking_tasks_count, _paused_period_secs, _memory_sufficient_dependency->ready(), _paused_reason.to_string()); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
