You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
Describe the bug
Incorrect implemetation of ilike_utf8_scalars
To Reproduce
The below code fails
Expected behavior
The above code should pass
Additional context
In the equals path of ilike there is incorrect comparision
The text was updated successfully, but these errors were encountered: