You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2021/12/22 18:14:19 UTC

[GitHub] [arrow-rs] jwdeitch commented on issue #1087: Possible `like`/`ilike`/`not_like` kernels= escaping problems

jwdeitch commented on issue #1087:
URL: https://github.com/apache/arrow-rs/issues/1087#issuecomment-999772920


   Thanks for filing Andrew!
   
   Here is a reproducer test case:
   
   ```
       test_utf8!(
           ilike_utf8_scalar_regex,
           vec!["%%%"],
           vec![r#"\%_\%"#],
           ilike_utf8,
           vec![true]
       );
   
   ```
   
   the 
   ```... pat.replace("%", ".*") ... ```
   areas might need to consider a leading `\` to know to _not_ make the `.*` replacement
   
   
   
   
   


-- 
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-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org