Reputation: 225
I am trying to use the $timeFilter variable in grafana with clickhouse as my database. The query I am writing is this :
select timestamp from pw.lte_avail_key where $timeFilter
The Generated SQL by Grafana is this:
select timestamp from pw.lte_avail_key where undefined >= toDateTime(1615514208)
In some panels, the query being generated is this:
select timestamp from pw.lte_avail_key where timestamp >= toDateTime(1615514208)
Why is this random issue occuring? Please help.
Upvotes: 1
Views: 10777