You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix IN expression with mixed primitive literals and tuples
When the RHS of IN contains a mix of primitive literals (integers,
strings, etc.) and tuple literals that only contain primitives,
output as a single Literal Tuple_ instead of Function tuple.
Example: (number, tuple) IN (3, (2, 3)) now correctly outputs:
Literal Tuple_(UInt64_3, Tuple_(UInt64_2, UInt64_3))
Fixed test: 00132_sets/stmt12
0 commit comments