findepi opened a new issue, #6702:
URL: https://github.com/apache/arrow-rs/issues/6702
This should pass, but doesn't
```rust
// %... pattern with escapes
assert_eq!(
like(
&StringArray::from_iter_values([r"abc\d"]),
&StringArray::from_iter_values([r"%c\\d"])
)
.unwrap(),
BooleanArray::from(vec![true])
);
// ...% pattern with escapes
assert_eq!(
like(
&StringArray::from_iter_values([r"a\bcd"]),
&StringArray::from_iter_values([r"a\\b%"])
)
.unwrap(),
BooleanArray::from(vec![true])
);
```
--
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]