Cannot select aggregate and non-aggregate fields · Issue #772 · diesel-rs/diesel
With a table table! { mrr_by_date (account_id, date) { account_id -> Integer, date -> Date, mrr -> Double, } } I cannot do: mrr_by_date .group_by(date) .select((sum(mrr), date)) .filter(account_id....