Skip to content

Commit

Permalink
fix and test
Browse files Browse the repository at this point in the history
  • Loading branch information
jacktengg committed Apr 17, 2024
1 parent d6e0d1e commit ff77b2f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ Status PartitionedHashJoinSinkLocalState::_revoke_unpartitioned_block(RuntimeSta
LOG(INFO) << "execution_context released, maybe query was cancelled.";
return;
}
SCOPED_ATTACH_TASK(state);
auto& p = _parent->cast<PartitionedHashJoinSinkOperatorX>();
SCOPED_TIMER(_partition_shuffle_timer);
auto* channel_ids = reinterpret_cast<uint32_t*>(_partitioner->get_channel_ids());
Expand Down
6 changes: 3 additions & 3 deletions be/src/runtime/thread_context.h
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,9 @@ class ThreadContext {

void consume_memory(const int64_t size) const {
#ifdef USE_MEM_TRACKER
DCHECK(!doris::config::enable_memory_orphan_check ||
thread_mem_tracker()->label() != "Orphan")
<< doris::memory_orphan_check_msg;
// DCHECK(!doris::config::enable_memory_orphan_check ||
// thread_mem_tracker()->label() != "Orphan")
// << doris::memory_orphan_check_msg;
#endif
thread_mem_tracker_mgr->consume(size, skip_large_memory_check);
}
Expand Down

0 comments on commit ff77b2f

Please sign in to comment.