diesel/query_source/
joins.rs

1use super::{AppearsInFromClause, Plus};
2use crate::backend::Backend;
3use crate::backend::DieselReserveSpecialization;
4use crate::expression::grouped::Grouped;
5use crate::expression::nullable::Nullable;
6use crate::prelude::*;
7use crate::query_builder::*;
8use crate::query_dsl::InternalJoinDsl;
9use crate::sql_types::BoolOrNullableBool;
10use crate::util::TupleAppend;
11
12/// A query source representing the join between two tables
13pub struct Join<Left: QuerySource, Right: QuerySource, Kind> {
14    left: FromClause<Left>,
15    right: FromClause<Right>,
16    kind: Kind,
17}
18
19impl<Left, Right, Kind> Clone for Join<Left, Right, Kind>
20where
21    Left: QuerySource,
22    FromClause<Left>: Clone,
23    Right: QuerySource,
24    FromClause<Right>: Clone,
25    Kind: Clone,
26{
27    fn clone(&self) -> Self {
28        Self {
29            left: self.left.clone(),
30            right: self.right.clone(),
31            kind: self.kind.clone(),
32        }
33    }
34}
35
36impl<Left, Right, Kind> Copy for Join<Left, Right, Kind>
37where
38    Left: QuerySource,
39    FromClause<Left>: Copy,
40    Right: QuerySource,
41    FromClause<Right>: Copy,
42    Kind: Copy,
43{
44}
45
46impl<Left, Right, Kind> std::fmt::Debug for Join<Left, Right, Kind>
47where
48    Left: QuerySource,
49    FromClause<Left>: std::fmt::Debug,
50    Right: QuerySource,
51    FromClause<Right>: std::fmt::Debug,
52    Kind: std::fmt::Debug,
53{
54    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
55        f.debug_struct("Join")
56            .field("left", &self.left)
57            .field("right", &self.right)
58            .field("kind", &self.kind)
59            .finish()
60    }
61}
62
63impl<Left, Right, Kind> QueryId for Join<Left, Right, Kind>
64where
65    Left: QueryId + QuerySource + 'static,
66    Right: QueryId + QuerySource + 'static,
67    Kind: QueryId,
68{
69    type QueryId = Join<Left, Right, Kind::QueryId>;
70
71    const HAS_STATIC_QUERY_ID: bool =
72        Left::HAS_STATIC_QUERY_ID && Right::HAS_STATIC_QUERY_ID && Kind::HAS_STATIC_QUERY_ID;
73}
74
75#[derive(Debug, Clone, Copy, QueryId)]
76#[doc(hidden)]
77/// A query source representing the join between two tables with an explicit
78/// `ON` given. `Join` should usually be referenced instead, as all "type
79/// safety" traits are implemented in terms of `Join` implementing them.
80pub struct JoinOn<Join, On> {
81    join: Join,
82    on: On,
83}
84
85impl<Left, Right, Kind> Join<Left, Right, Kind>
86where
87    Left: QuerySource,
88    Right: QuerySource,
89{
90    pub(crate) fn new(left: Left, right: Right, kind: Kind) -> Self {
91        Join {
92            left: FromClause::new(left),
93            right: FromClause::new(right),
94            kind,
95        }
96    }
97
98    pub(crate) fn on<On>(self, on: On) -> JoinOn<Self, On> {
99        JoinOn { join: self, on: on }
100    }
101}
102
103impl<Left, Right> QuerySource for Join<Left, Right, Inner>
104where
105    Left: QuerySource + AppendSelection<Right::DefaultSelection>,
106    Right: QuerySource,
107    Left::Output: AppearsOnTable<Self>,
108    Self: Clone,
109{
110    type FromClause = Self;
111    // combining two valid selectable expressions for both tables will always yield a
112    // valid selectable expressions for the whole join, so no need to check that here
113    // again. These checked turned out to be quite expensive in terms of compile time
114    // so we use a wrapper type to just skip the check and forward other more relevant
115    // trait implementations to the inner type
116    //
117    // See https://github.com/diesel-rs/diesel/issues/3223 for details
118    type DefaultSelection = self::private::SkipSelectableExpressionBoundCheckWrapper<Left::Output>;
119
120    fn from_clause(&self) -> Self::FromClause {
121        self.clone()
122    }
123
124    fn default_selection(&self) -> Self::DefaultSelection {
125        self::private::SkipSelectableExpressionBoundCheckWrapper(
126            self.left
127                .source
128                .append_selection(self.right.source.default_selection()),
129        )
130    }
131}
132
133impl<Left, Right> QuerySource for Join<Left, Right, LeftOuter>
134where
135    Left: QuerySource + AppendSelection<Nullable<Right::DefaultSelection>>,
136    Right: QuerySource,
137    Left::Output: AppearsOnTable<Self>,
138    Self: Clone,
139{
140    type FromClause = Self;
141    // combining two valid selectable expressions for both tables will always yield a
142    // valid selectable expressions for the whole join, so no need to check that here
143    // again. These checked turned out to be quite expensive in terms of compile time
144    // so we use a wrapper type to just skip the check and forward other more relevant
145    // trait implementations to the inner type
146    //
147    // See https://github.com/diesel-rs/diesel/issues/3223 for details
148    type DefaultSelection = self::private::SkipSelectableExpressionBoundCheckWrapper<Left::Output>;
149
150    fn from_clause(&self) -> Self::FromClause {
151        self.clone()
152    }
153
154    fn default_selection(&self) -> Self::DefaultSelection {
155        self::private::SkipSelectableExpressionBoundCheckWrapper(
156            self.left
157                .source
158                .append_selection(self.right.source.default_selection().nullable()),
159        )
160    }
161}
162
163#[derive(Debug, Clone, Copy)]
164pub struct OnKeyword;
165
166impl<DB: Backend> nodes::MiddleFragment<DB> for OnKeyword {
167    fn push_sql(&self, mut pass: AstPass<'_, '_, DB>) {
168        pass.push_sql(" ON ");
169    }
170}
171
172impl<Join, On> QuerySource for JoinOn<Join, On>
173where
174    Join: QuerySource,
175    On: AppearsOnTable<Join::FromClause> + Clone,
176    On::SqlType: BoolOrNullableBool,
177    Join::DefaultSelection: SelectableExpression<Self>,
178{
179    type FromClause = Grouped<nodes::InfixNode<Join::FromClause, On, OnKeyword>>;
180    type DefaultSelection = Join::DefaultSelection;
181
182    fn from_clause(&self) -> Self::FromClause {
183        Grouped(nodes::InfixNode::new(
184            self.join.from_clause(),
185            self.on.clone(),
186            OnKeyword,
187        ))
188    }
189
190    fn default_selection(&self) -> Self::DefaultSelection {
191        self.join.default_selection()
192    }
193}
194
195impl<Left, Right, Kind, DB> QueryFragment<DB> for Join<Left, Right, Kind>
196where
197    DB: Backend + DieselReserveSpecialization,
198    Left: QuerySource,
199    Left::FromClause: QueryFragment<DB>,
200    Right: QuerySource,
201    Right::FromClause: QueryFragment<DB>,
202    Kind: QueryFragment<DB>,
203{
204    fn walk_ast<'b>(&'b self, mut out: AstPass<'_, 'b, DB>) -> QueryResult<()> {
205        self.left.from_clause.walk_ast(out.reborrow())?;
206        self.kind.walk_ast(out.reborrow())?;
207        out.push_sql(" JOIN ");
208        self.right.from_clause.walk_ast(out.reborrow())?;
209        Ok(())
210    }
211}
212
213/// Indicates that two tables can be joined without an explicit `ON` clause.
214///
215/// Implementations of this trait are generated by invoking [`joinable!`].
216/// Implementing this trait means that you can call
217/// `left_table.inner_join(right_table)`, without supplying the `ON` clause
218/// explicitly. To join two tables which do not implement this trait, you will
219/// need to call [`.on`].
220///
221/// See [`joinable!`] and [`inner_join`] for usage examples.
222///
223/// [`joinable!`]: crate::joinable!
224/// [`.on`]: crate::query_dsl::JoinOnDsl::on()
225/// [`inner_join`]: crate::query_dsl::QueryDsl::inner_join()
226pub trait JoinTo<T> {
227    #[doc(hidden)]
228    type FromClause;
229    #[doc(hidden)]
230    type OnClause;
231    #[doc(hidden)]
232    fn join_target(rhs: T) -> (Self::FromClause, Self::OnClause);
233}
234
235#[doc(hidden)]
236/// Used to ensure the sql type of `left.join(mid).join(right)` is
237/// `(Left, Mid, Right)` and not `((Left, Mid), Right)`. This needs
238/// to be separate from `TupleAppend` because we still want to keep
239/// the column lists (which are tuples) separate.
240pub trait AppendSelection<Selection> {
241    type Output;
242
243    fn append_selection(&self, selection: Selection) -> Self::Output;
244}
245
246impl<T: Table, Selection> AppendSelection<Selection> for T {
247    type Output = (T::AllColumns, Selection);
248
249    fn append_selection(&self, selection: Selection) -> Self::Output {
250        (T::all_columns(), selection)
251    }
252}
253
254impl<Left, Mid, Selection, Kind> AppendSelection<Selection> for Join<Left, Mid, Kind>
255where
256    Left: QuerySource,
257    Mid: QuerySource,
258    Self: QuerySource,
259    <Self as QuerySource>::DefaultSelection: TupleAppend<Selection>,
260{
261    type Output = <<Self as QuerySource>::DefaultSelection as TupleAppend<Selection>>::Output;
262
263    fn append_selection(&self, selection: Selection) -> Self::Output {
264        self.default_selection().tuple_append(selection)
265    }
266}
267
268impl<Join, On, Selection> AppendSelection<Selection> for JoinOn<Join, On>
269where
270    Join: AppendSelection<Selection>,
271{
272    type Output = Join::Output;
273
274    fn append_selection(&self, selection: Selection) -> Self::Output {
275        self.join.append_selection(selection)
276    }
277}
278
279#[doc(hidden)]
280#[derive(Debug, Clone, Copy, Default, QueryId)]
281pub struct Inner;
282
283impl<DB> QueryFragment<DB> for Inner
284where
285    DB: Backend + DieselReserveSpecialization,
286{
287    fn walk_ast<'b>(&'b self, mut out: AstPass<'_, 'b, DB>) -> QueryResult<()> {
288        out.push_sql(" INNER");
289        Ok(())
290    }
291}
292
293#[doc(hidden)]
294#[derive(Debug, Clone, Copy, Default, QueryId)]
295pub struct LeftOuter;
296
297impl<DB> QueryFragment<DB> for LeftOuter
298where
299    DB: Backend + DieselReserveSpecialization,
300{
301    fn walk_ast<'b>(&'b self, mut out: AstPass<'_, 'b, DB>) -> QueryResult<()> {
302        out.push_sql(" LEFT OUTER");
303        Ok(())
304    }
305}
306
307impl<Left, Mid, Right, Kind> JoinTo<Right> for Join<Left, Mid, Kind>
308where
309    Left: JoinTo<Right> + QuerySource,
310    Mid: QuerySource,
311{
312    type FromClause = <Left as JoinTo<Right>>::FromClause;
313    type OnClause = Left::OnClause;
314
315    fn join_target(rhs: Right) -> (Self::FromClause, Self::OnClause) {
316        Left::join_target(rhs)
317    }
318}
319
320impl<Join, On, Right> JoinTo<Right> for JoinOn<Join, On>
321where
322    Join: JoinTo<Right>,
323{
324    type FromClause = Join::FromClause;
325    type OnClause = Join::OnClause;
326
327    fn join_target(rhs: Right) -> (Self::FromClause, Self::OnClause) {
328        Join::join_target(rhs)
329    }
330}
331
332impl<T, Left, Right, Kind> AppearsInFromClause<T> for Join<Left, Right, Kind>
333where
334    Left: AppearsInFromClause<T> + QuerySource,
335    Right: AppearsInFromClause<T> + QuerySource,
336    Left::Count: Plus<Right::Count>,
337{
338    type Count = <Left::Count as Plus<Right::Count>>::Output;
339}
340
341impl<T, Join, On> AppearsInFromClause<T> for JoinOn<Join, On>
342where
343    Join: AppearsInFromClause<T>,
344{
345    type Count = Join::Count;
346}
347
348#[doc(hidden)]
349#[derive(Debug, Clone, Copy)]
350pub struct OnClauseWrapper<Source, On> {
351    pub(crate) source: Source,
352    pub(crate) on: On,
353}
354
355impl<Source, On> OnClauseWrapper<Source, On> {
356    pub fn new(source: Source, on: On) -> Self {
357        OnClauseWrapper { source, on }
358    }
359}
360
361impl<Lhs, Rhs, On> JoinTo<OnClauseWrapper<Rhs, On>> for Lhs
362where
363    Lhs: Table,
364{
365    type FromClause = Rhs;
366    type OnClause = On;
367
368    fn join_target(rhs: OnClauseWrapper<Rhs, On>) -> (Self::FromClause, Self::OnClause) {
369        (rhs.source, rhs.on)
370    }
371}
372
373impl<Lhs, Rhs, On> JoinTo<Rhs> for OnClauseWrapper<Lhs, On>
374where
375    Lhs: JoinTo<Rhs>,
376{
377    type FromClause = <Lhs as JoinTo<Rhs>>::FromClause;
378    type OnClause = <Lhs as JoinTo<Rhs>>::OnClause;
379
380    fn join_target(rhs: Rhs) -> (Self::FromClause, Self::OnClause) {
381        <Lhs as JoinTo<Rhs>>::join_target(rhs)
382    }
383}
384
385impl<Rhs, Kind, On1, On2, Lhs> InternalJoinDsl<Rhs, Kind, On1> for OnClauseWrapper<Lhs, On2>
386where
387    Lhs: InternalJoinDsl<Rhs, Kind, On1>,
388{
389    type Output = OnClauseWrapper<<Lhs as InternalJoinDsl<Rhs, Kind, On1>>::Output, On2>;
390
391    fn join(self, rhs: Rhs, kind: Kind, on: On1) -> Self::Output {
392        OnClauseWrapper {
393            source: self.source.join(rhs, kind, on),
394            on: self.on,
395        }
396    }
397}
398
399impl<Qs, On> QueryDsl for OnClauseWrapper<Qs, On> {}
400
401#[doc(hidden)]
402/// Convert any joins in a `FROM` clause into an inner join.
403///
404/// This trait is used to determine whether
405/// `Nullable<T>: SelectableExpression<SomeJoin>`. We consider it to be
406/// selectable if `T: SelectableExpression<InnerJoin>`. Since `SomeJoin`
407/// may be deeply nested, we need to recursively change any appearances of
408/// `LeftOuter` to `Inner` in order to perform this check.
409pub trait ToInnerJoin {
410    type InnerJoin;
411}
412
413impl<Left, Right, Kind> ToInnerJoin for Join<Left, Right, Kind>
414where
415    Left: ToInnerJoin + QuerySource,
416    Left::InnerJoin: QuerySource,
417    Right: ToInnerJoin + QuerySource,
418    Right::InnerJoin: QuerySource,
419{
420    type InnerJoin = Join<Left::InnerJoin, Right::InnerJoin, Inner>;
421}
422
423impl<Join, On> ToInnerJoin for JoinOn<Join, On>
424where
425    Join: ToInnerJoin,
426{
427    type InnerJoin = JoinOn<Join::InnerJoin, On>;
428}
429
430impl<From> ToInnerJoin for SelectStatement<FromClause<From>>
431where
432    From: ToInnerJoin + QuerySource,
433    From::InnerJoin: QuerySource,
434{
435    type InnerJoin = SelectStatement<FromClause<From::InnerJoin>>;
436}
437
438impl<T: Table> ToInnerJoin for T {
439    type InnerJoin = T;
440}
441
442mod private {
443    use crate::backend::Backend;
444    use crate::expression::{Expression, ValidGrouping};
445    use crate::query_builder::{AstPass, QueryFragment, SelectClauseExpression};
446    use crate::{AppearsOnTable, QueryResult, SelectableExpression};
447
448    #[derive(Debug, crate::query_builder::QueryId, Copy, Clone)]
449    pub struct SkipSelectableExpressionBoundCheckWrapper<T>(pub(super) T);
450
451    impl<DB, T> QueryFragment<DB> for SkipSelectableExpressionBoundCheckWrapper<T>
452    where
453        T: QueryFragment<DB>,
454        DB: Backend,
455    {
456        fn walk_ast<'b>(&'b self, pass: AstPass<'_, 'b, DB>) -> QueryResult<()> {
457            self.0.walk_ast(pass)
458        }
459    }
460
461    // The default select clause is only valid for no group by clause
462    // anyway so we can just skip the recursive check here
463    impl<T> ValidGrouping<()> for SkipSelectableExpressionBoundCheckWrapper<T> {
464        type IsAggregate = crate::expression::is_aggregate::No;
465    }
466
467    // This needs to use the expression impl
468    impl<QS, T> SelectClauseExpression<QS> for SkipSelectableExpressionBoundCheckWrapper<T>
469    where
470        T: SelectClauseExpression<QS>,
471    {
472        type Selection = T::Selection;
473
474        type SelectClauseSqlType = T::SelectClauseSqlType;
475    }
476
477    // The default select clause for joins is always valid assuming that
478    // the default select clause of all involved query sources is
479    // valid too. We can skip the recursive check here.
480    // This is the main optimization.
481    impl<QS, T> SelectableExpression<QS> for SkipSelectableExpressionBoundCheckWrapper<T> where
482        Self: AppearsOnTable<QS>
483    {
484    }
485
486    impl<QS, T> AppearsOnTable<QS> for SkipSelectableExpressionBoundCheckWrapper<T> where
487        Self: Expression
488    {
489    }
490
491    // Expression must recurse the whole expression
492    // as this is required for the return type of the query
493    impl<T> Expression for SkipSelectableExpressionBoundCheckWrapper<T>
494    where
495        T: Expression,
496    {
497        type SqlType = T::SqlType;
498    }
499
500    impl<T, Selection> crate::util::TupleAppend<Selection>
501        for SkipSelectableExpressionBoundCheckWrapper<T>
502    where
503        T: crate::util::TupleAppend<Selection>,
504    {
505        // We're re-wrapping after anyway
506        type Output = T::Output;
507
508        fn tuple_append(self, right: Selection) -> Self::Output {
509            self.0.tuple_append(right)
510        }
511    }
512}