Skip to main content

like_glob_values

Function like_glob_values 

Source
pub fn like_glob_values(glob: bool, l: &Value, r: &Value) -> Value
Expand description

Apply LIKE (glob false) or GLOB (glob true) to two values, matching SQLite: NULL on either side yields NULL, otherwise both coerce to text and the left value is matched against the right pattern. Public wrapper used by the VDBE interpreter.