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
Current behavior: ERR: unsupported max iterator type: *influxql.booleanInterruptIterator
Desired behavior: handle true as 1 and false as 0 - return max(field) == true iff at least one row has the field set to true.
Use case: We're storing some boolean data near other, numeric stats, and want to downsample them with Continuous Queries. We only need to know if they were true at least once in the given time.
The text was updated successfully, but these errors were encountered:
min() and max() should be supported for booleans.
Current behavior: ERR: unsupported max iterator type: *influxql.booleanInterruptIterator
Desired behavior: handle true as 1 and false as 0 - return max(field) == true iff at least one row has the field set to true.
Use case: We're storing some boolean data near other, numeric stats, and want to downsample them with Continuous Queries. We only need to know if they were true at least once in the given time.
The text was updated successfully, but these errors were encountered: