xinyiZzz commented on code in PR #29107: URL: https://github.com/apache/doris/pull/29107#discussion_r1437024560
########## be/src/vec/core/block.cpp: ########## @@ -730,14 +730,40 @@ void Block::update_hash(SipHash& hash) const { void Block::filter_block_internal(Block* block, const std::vector<uint32_t>& columns_to_filter, const IColumn::Filter& filter) { + auto block_column_not_exist = [&columns_to_filter, block](auto& col) -> void { + std::ostringstream ss; + for (const auto& i : columns_to_filter) { + ss << i << "-"; Review Comment: 这个只会在 column 是 nullptr 的时候执行,不会影响正常执行 -- 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