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 expressionarr IN (set)was interpreted as "at least onearrelement belongs to theset". To get the same behavior in the new version, writearrayExists(x -> x IN (set), arr).