1use crate::dsl;
2use crate::expression::Expression;
3use crate::expression::TypedExpressionType;
4use crate::expression::ValidGrouping;
5use crate::query_builder::FromClause;
6use crate::query_builder::{AsQuery, SelectStatement};
7use crate::query_source::Table;
89/// The `group_by` method
10///
11/// This trait should not be relied on directly by most apps. Its behavior is
12/// provided by [`QueryDsl`]. However, you may need a where clause on this trait
13/// to call `group_by` from generic code.
14///
15/// [`QueryDsl`]: crate::QueryDsl
16pub trait GroupByDsl<Expr: Expression> {
17/// The type returned by `.group_by`
18type Output;
1920/// See the trait documentation.
21fn group_by(self, expr: Expr) -> dsl::GroupBy<Self, Expr>;
22}
2324impl<T, Expr> GroupByDsl<Expr> for T
25where
26Expr: Expression,
27 T: Table + AsQuery<Query = SelectStatement<FromClause<T>>>,
28 T::DefaultSelection: Expression<SqlType = T::SqlType> + ValidGrouping<()>,
29 T::SqlType: TypedExpressionType,
30 T::Query: GroupByDsl<Expr>,
31{
32type Output = dsl::GroupBy<SelectStatement<FromClause<T>>, Expr>;
3334fn group_by(self, expr: Expr) -> dsl::GroupBy<Self, Expr> {
35self.as_query().group_by(expr)
36 }
37}