Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix to #20003 - Convert multiple equality/in-equality on same column …
…joined by Or/Else into SQL IN expression Various optimizations to queries with IN: - a == X || a == Y -> a IN (X, Y) - a != X && a != Y -> a NOT IN (X, Y) - a IN (X) -> a == X - a IN (X, Y) || a IN (Z, W) -> a IN (X, Y, Z, W) - a IN (X, Y, Z) && a IN (Y, Z, W) -> a IN (Y, Z) Fixes #20003
- Loading branch information