Skip to content

Commit

Permalink
[fix](compile) fix BE compile failure on Mac (apache#32044)
Browse files Browse the repository at this point in the history
  • Loading branch information
zy-kkk authored Mar 11, 2024
1 parent ad472eb commit b7b3843
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion be/src/pipeline/pipeline_x/pipeline_x_task.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,9 @@ Status PipelineXTask::execute(bool* eos) {
<< ",\nmin revocable mem: "
<< PrettyPrinter::print(_state->min_revocable_mem(), TUnit::BYTES)
<< ",\nrevocable mem: "
<< PrettyPrinter::print(_sink->revocable_mem_size(_state), TUnit::BYTES);
<< PrettyPrinter::print(
static_cast<uint64_t>(_sink->revocable_mem_size(_state)),
TUnit::BYTES);
}
if (sys_mem_available < sys_mem_warning_water_mark * config::spill_mem_warning_water_mark_multiplier /*&&
(double)query_mem >= (double)_state->query_mem_limit() * 0.8*/) {
Expand Down

0 comments on commit b7b3843

Please sign in to comment.