This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch spill_and_reserve
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/spill_and_reserve by this push:
new 9f4c269d3fd fix bug time
9f4c269d3fd is described below
commit 9f4c269d3fd29932e88984e0cfdc6e17fc9e4e32
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 61d961b6c0e..527c7ca684d 100644
--- a/be/src/runtime/query_context.cpp
+++ b/be/src/runtime/query_context.cpp
@@ -533,11 +533,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]