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
select mean(usage_user) from cpu where hostname = 'host_99' and time > 1 or time <= 1;
is treated the same as if the 'or' were an 'and'. This means it returns no results whereas it should return all rows. If disjunctions on time aren't meant to be supported, an error should be returned instead of an empty result set.
The text was updated successfully, but these errors were encountered:
A query like:
is treated the same as if the 'or' were an 'and'. This means it returns no results whereas it should return all rows. If disjunctions on time aren't meant to be supported, an error should be returned instead of an empty result set.
The text was updated successfully, but these errors were encountered: