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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to