phillipleblanc commented on PR #15820:
URL: https://github.com/apache/datafusion/pull/15820#issuecomment-2826473113

   Correct, DataFusion was correctly handling Like and ILike - but DataFusion 
stores that as a single `Expr::Like ` with a boolean for whether its case 
insensitive.
   
   When translating that expression back into the SQL AST, we need to use the 
correct AST expression for `Expr::Like` with `case_insensitive` equal to `true` 
(i.e. `ILIKE`) or `Expr::Like` with `case_insensitive` equal to false (i.e. 
`LIKE`)


-- 
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

Reply via email to