eldenmoon commented on code in PR #11833: URL: https://github.com/apache/doris/pull/11833#discussion_r948616467
########## be/src/vec/core/block.cpp: ########## @@ -588,7 +588,9 @@ void Block::clear_column_data(int column_size) noexcept { } } for (auto& d : data) { - DCHECK(d.column->use_count() == 1); + if (UNLIKELY(d.column->use_count() != 1)) { + LOG(INFO) << "Ref count of column is " << d.column->use_count(); Review Comment: maybe change to LOG(WARNING) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org