UBarney commented on code in PR #14567: URL: https://github.com/apache/datafusion/pull/14567#discussion_r1950259274
########## datafusion/physical-optimizer/src/pruning.rs: ########## @@ -1590,6 +1590,13 @@ fn build_statistics_expr( )), )) } + Operator::NotLikeMatch => { + build_not_like_match(expr_builder).ok_or_else(|| { + plan_datafusion_err!( + "The NOT LIKE expression with wildcards is only supported at the end of the pattern" Review Comment: Agree. Now it return `Result<Arc<dyn PhysicalExpr>>` -- 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: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org