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
graphite> select * from foo where time >= 1401229247000;
graphite> ✘ Error: Cannot use time with '>='
graphite> select * from foo where time <= 1401229247000;
graphite> ✘ Error: Cannot use time with '<='
since > and < work fine, >= and <= should probably be supported?
The text was updated successfully, but these errors were encountered:
hey john, maybe i'm missing something, but if i want to see data from a certain begin point, to an end point, i'ld like datapoints at those points in time to be included. I guess i could easily work around this and do > begin-1 and < end+1 but >= begin and <= end seems cleaner.
Hi,
since
>
and<
work fine,>=
and<=
should probably be supported?The text was updated successfully, but these errors were encountered: