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
@FGRibreau your first example is considered a bug. When it comes to the second example, I think count() should return the number of all points and not just 40. This story will fix the behavior of limit to be applied after the aggregation is done, that means, limit will limit the number of points returned to the client and not the number of points that are input to the aggregator
When it comes to the second example, I think count() should return the number of all points and not just 40
Indeed, the bug is only true for distinct. For reference in (my)SQL:
SELECT COUNT (id) FROM account LIMIT 40
// is indeed the same as `SELECT COUNT (id) FROM account`
// however
SELECT DISTINCT (id) FROM account LIMIT 40
// returns 40 lines. (all id from account are different)
Should returns 1 to 3 lines but instead returns every distinct
key
from themonitoring
collection, it should not.Same with count:
Tested on InfluxDB 0.5.0
The text was updated successfully, but these errors were encountered: