Function catalog::system_schema::predicate::like_utf8

source ·
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.

  • s the target string
  • pattern the pattern just like ‘%abc’
  • case_insensitive whether to perform case-insensitive like or not.