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(iox_query_influxql): correct SPREAD when all values are negative
`SpreadAccumulator` initialised `max` to zero, so all-negative inputs
produced `0 - min` instead of `max - min` (all -3.6 returned 3.6
instead of 0). Initialise `max` to NULL and check `is_null()` in
`maybe_set_max`, mirroring the `min` path.
Closes#27384
0 commit comments