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
Aggregate function map_union_sum does not accept type boolean and may cause fuzzer failures; however, Presto does accept BOOLEAN as a key type:
> select map_union_sum(x) from (select map(array[true, false], cast(array[1.1,2] as array<real>) ) x union all select map(array[true, false], cast(array[10,20] as array<real>)))
_col0
{
"false": 22,
"true": 11.1
}
System information
Unexpected key type BOOLEAN, Source: RUNTIME, ErrorCode: UNREACHABLE_CODE
Relevant logs
The text was updated successfully, but these errors were encountered:
Bug description
Aggregate function
map_union_sum
does not accept type boolean and may cause fuzzer failures; however, Presto does accept BOOLEAN as a key type:System information
Relevant logs
The text was updated successfully, but these errors were encountered: