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
It used to be possible to specify a custom value rather than a column in the table as the timestamp value, but this seems to no longer be possible in 3.0.0. Previously I could specify that the timestamp should be computed from an hour column, but this no longer gets saved when I try to specify it.
This then in turn breaks the $timeFilter and $timeSeries macros
SELECT $timeSeries as t, count() FROM $table WHERE $timeFilter GROUP BY t ORDER BY t
becomes
SELECT
(intDiv(toUInt32(undefined), 10) * 10) * 1000 as t,
count()
FROM session.session_version
WHERE
date >= toDate(1711124831)
AND date <= toDate(1711146431)
AND undefined >= toDateTime(1711124831)
AND undefined <= toDateTime(1711146431)
GROUP BY t
ORDER BY t
not presence of undefined in 3 places
The text was updated successfully, but these errors were encountered:
It used to be possible to specify a custom value rather than a column in the table as the timestamp value, but this seems to no longer be possible in 3.0.0. Previously I could specify that the timestamp should be computed from an
hour
column, but this no longer gets saved when I try to specify it.This then in turn breaks the $timeFilter and $timeSeries macros
becomes
not presence of
undefined
in 3 placesThe text was updated successfully, but these errors were encountered: