-
Notifications
You must be signed in to change notification settings - Fork 695
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In the convenience methods for
join
, make column equality optional (#…
…1692) * In the convenience methods for `join`, make column equality optional Make `onColumn` and `otherColumn` nullable and default `null` in `innerJoin`, `leftJoin`, `rightJoin`, `fullJoin`, `crossJoin`. This allows for a more concise syntax when only wanting to use `additionalConstraint`, as `join` already allows. Example: ```kotlin A.innerJoin(B) { A.parentId eq B.parentId } ``` * fixup! In the convenience methods for `join`, make column equality optional --------- Co-authored-by: leonid.stashevsky <leonid.stashevsky@gmail.com>
- Loading branch information
Showing
1 changed file
with
45 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters