v.1.1.54378Backward Incompatible Changes

Removal of Special IN Expression Interpretation with Arrays

Removed the special interpretation of an IN expression if an array is specified on the left side. Previously, the expression arr IN (set) was interpreted as "at least one arr element belongs to the set". To get the same behavior in the new version, write arrayExists(x -> x IN (set), arr).