yiguolei commented on code in PR #11754: URL: https://github.com/apache/doris/pull/11754#discussion_r945221172
########## be/src/olap/rowset/segment_v2/segment_iterator.cpp: ########## @@ -1199,6 +1199,34 @@ Status SegmentIterator::next_batch(vectorized::Block* block) { return Status::OK(); } +void SegmentIterator::_convert_dict_code_for_predicate_if_necessary() { + for (auto predicate : _short_cir_eval_predicate) { + _convert_dict_code_for_predicate_if_necessary_impl(predicate); + } + + for (auto predicate : _pre_eval_block_predicate) { + _convert_dict_code_for_predicate_if_necessary_impl(predicate); + } + + std::set<const ColumnPredicate*> predicate_set {}; + _opts.delete_condition_predicates->get_all_column_predicate(predicate_set); + for (const auto column_predicate : predicate_set) { Review Comment: Could you please also check if dev-1.1.2 also have this problem? -- 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