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
LTTB is a very useful function that downsamples data. However, it only returns the time and the value from the downsampled rows. It would be very useful to have access to the values of other columns from the downsampled rows.
What does the feature do?
perhaps something like
SELECT
grouping_column,
(lttb_data).time,
(lttb_data).value,
(lttb_data).non_grouping_column_value
FROM (
SELECT
grouping_column,
UNNEST(lttb(time, float_value, $<nPoints>)) AS lttb_data
FROM hypertable
GROUP BY grouping_column
)
Implementation challenges
No response
The text was updated successfully, but these errors were encountered:
What problem does the new feature solve?
LTTB is a very useful function that downsamples data. However, it only returns the
time
and thevalue
from the downsampled rows. It would be very useful to have access to the values of other columns from the downsampled rows.What does the feature do?
perhaps something like
Implementation challenges
No response
The text was updated successfully, but these errors were encountered: