yiguolei commented on code in PR #29107: URL: https://github.com/apache/doris/pull/29107#discussion_r1436946200
########## 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: 先别加这个了,太废了啊 -- 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