Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Yuki Okushi <[email protected]>
  • Loading branch information
weiznich and JohnTitor authored Jul 21, 2022
1 parent 1201e15 commit 7dbb5d4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions diesel/src/query_dsl/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -366,14 +366,13 @@ pub trait QueryDsl: Sized {
/// ```
///
/// The exact generated SQL may change in future diesel version as long as the
/// generated query continue to produce same results. The currently generated
/// SQL is refered as ["explicit join"](https://www.postgresql.org/docs/current/explicit-joins.html)
/// by the PostgreSQL documentation and may have implications on the choosen query plan
/// generated query continues to produce same results. The currently generated
/// SQL is referred as ["explicit join"](https://www.postgresql.org/docs/current/explicit-joins.html)
/// by the PostgreSQL documentation and may have implications on the chosen query plan
/// for large numbers of joins in the same query. Checkout the documentation of the
/// [`join_collapse_limit` paramater](https://www.postgresql.org/docs/current/runtime-config-query.html#GUC-JOIN-COLLAPSE-LIMIT)
/// to control this behaviour.
///
///
/// [associations]: crate::associations
/// [`allow_tables_to_appear_in_same_query!`]: crate::allow_tables_to_appear_in_same_query!
///
Expand Down

0 comments on commit 7dbb5d4

Please sign in to comment.