wangbo commented on code in PR #8834: URL: https://github.com/apache/incubator-doris/pull/8834#discussion_r858251350
########## be/src/olap/rowset/segment_v2/segment_iterator.cpp: ########## @@ -625,13 +647,14 @@ void SegmentIterator::_vec_init_lazy_materialization() { _is_pred_column[cid] = true; pred_column_ids.insert(cid); + // Step1: check pred using short eval or vec eval if (type == OLAP_FIELD_TYPE_VARCHAR || type == OLAP_FIELD_TYPE_CHAR || type == OLAP_FIELD_TYPE_STRING || predicate->type() == PredicateType::BF || predicate->type() == PredicateType::IN_LIST || - predicate->type() == PredicateType::NO_IN_LIST) { + predicate->type() == PredicateType::NO_IN_LIST || + type == OLAP_FIELD_TYPE_DATE || type ==OLAP_FIELD_TYPE_DECIMAL) { 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