Skip to main content

expand_like_any

Function expand_like_any 

Source
pub fn expand_like_any(expr: Expression) -> Result<Expression>
Expand description

Expand LIKE ANY / ILIKE ANY to OR chains.

For dialects that don’t support quantifiers on LIKE/ILIKE (e.g. DuckDB), expand x LIKE ANY (('a', 'b')) to x LIKE 'a' OR x LIKE 'b'.