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
We want to be able to support things like multiplication of count with the float value, but an arithmetic post aggregator can only multiply things after they've already been summed up. As far as I can tell, we'd need to support Druid's virtual column feature for this to work.
Example SQL query:
SELECT
feature,
SUM(count * floatValue) AS computed_value_sum
FROM"telemetry-signals"WHERE appID=myAppId
GROUP BY feature;
The text was updated successfully, but these errors were encountered:
We want to be able to support things like multiplication of count with the float value, but an arithmetic post aggregator can only multiply things after they've already been summed up. As far as I can tell, we'd need to support Druid's virtual column feature for this to work.
Example SQL query:
The text was updated successfully, but these errors were encountered: