Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Mryange committed Dec 12, 2024
1 parent ab47ba3 commit f335848
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion be/src/pipeline/exec/exchange_sink_operator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,10 @@ std::shared_ptr<ExchangeSinkBuffer> ExchangeSinkOperatorX::get_sink_buffer(
if (std::dynamic_pointer_cast<SortSourceOperatorX>(_child) ||
std::dynamic_pointer_cast<LocalExchangeSourceOperatorX>(_child) ||
std::dynamic_pointer_cast<SpillSortSourceOperatorX>(_child)) {
DCHECK_EQ(_dest_is_merge, true);
if (!_dest_is_merge) {
throw doris::Exception(ErrorCode::INTERNAL_ERROR, "_dest_is_merge {}. child name {}",
_dest_is_merge, _child->get_name());
}
return _create_buffer({sender_ins_id});
}
if (_dest_is_merge) {
Expand Down

0 comments on commit f335848

Please sign in to comment.