fn like_utf8(s: &str, pattern: &str, case_insensitive: &bool) -> Option<bool>Expand description
Perform SQL left LIKE right, return None if fail to evaluate.
sthe target stringpatternthe pattern just like ‘%abc’case_insensitivewhether to perform case-insensitive like or not.