Function call fusion.
Apache Arrow project uses regular expression matching to implement the LIKE predicate by translating SQL pattern into a regular expression pattern:
let re_pattern = pat.replace("%", ".*").replace("_", ".");
While this approach works it has issues:
r...
softwarebits.hashnode.dev2 min read