github-actions[bot] commented on code in PR #13035: URL: https://github.com/apache/doris/pull/13035#discussion_r1044146716
########## be/src/vec/exec/scan/vscan_node.cpp: ########## @@ -462,6 +463,17 @@ Status VScanNode::_normalize_predicate(VExpr* conjunct_expr_root, VExpr** output }, *range); } + + if (pdt == PushDownType::UNACCEPTABLE && is_compound_predicate) { + std::vector<ColumnValueRangeType> column_value_rangs; + _normalize_compound_predicate(cur_expr, *(_vconjunct_ctx_ptr.get()), &pdt, Review Comment: warning: redundant get() call on smart pointer [readability-redundant-smartptr-get] ```suggestion _normalize_compound_predicate(cur_expr, *(_vconjunct_ctx_ptr), &pdt, ``` -- 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