psvri opened a new issue, #2544: URL: https://github.com/apache/arrow-rs/issues/2544
**Describe the bug** Incorrect implemetation of ilike_utf8_scalars **To Reproduce** The below code fails ``` let left = StringArray::from(vec!["arrow", "parrow", "arrows", "arr"]); let right = "ArroW"; let res = ilike_utf8_scalar(&left, right).unwrap(); assert!(res.value(0)); ``` **Expected behavior** The above code should pass **Additional context** In the equals path of ilike there is incorrect comparision -- 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...@arrow.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org