Open
Description
Description
The following test should work:
evalGroupAfterStatsOverRow
ROW type = ["one", "two"]
| STATS BY type
| EVAL is_one = type == "one"
| EVAL is_two = type == "two"
;
type:keyword |is_one:boolean |is_two:boolean
one |true |false
two |false |true
but if now fails, is_one
and is_two
being wrongly returned as null
.
(Disabling PropagateEvalFoldables
in the optimiser fixes it.)