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
tree: generate a random tuple type in TestStringConcat
Previously, TestStringConcat was using the AnyTuple type to generate a
randum datum. `AnyTuple` is not a real type that can be assigned to a
value. Rather its a sentinel type used to represent any type that is a
tuple.
This worked before PR #153789, because randgen would pick random datums
and then generate a new tuple type that matches the datums. But that
behavior was broken for `NULL` values and did not match the behavior of
the value decoder.
Release note: none
Fixes: #153789
0 commit comments