-
Notifications
You must be signed in to change notification settings - Fork 358
Add support for full outer join to SelectBuilder. #1421
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
cb4773b
to
b0a9ca0
Compare
Original pull request #1421
b0a9ca0
to
2dce16c
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let me know what you think, looks good otherwise.
* @see Join | ||
* @see SQL#table(String) | ||
*/ | ||
SelectOn fullOuterJoin(TableLike table); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder whether we should introduce a JoinType
type to be more flexible and not always require a new method per join type. That type could describe INNER JOIN
, LEFT/RIGHT
joins, outer, cross, natural and many more of those.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree, I will replace fullOuterJoin
with join
with an additional parameter.
As discussed I added a generic join method and merged it into |
No description provided.