We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Postgres has added support for LATERAL joins: https://www.postgresql.org/docs/9.4/queries-table-expressions.html
Can we please add support for those types of join to exposed?
The text was updated successfully, but these errors were encountered:
@Tapac is this something you would accept PRs for?
I would really love support for this as would simplify a few of the queries I'm working on.
My plan would be to add a joinModifier to the JoinPart along with enum JoinModifier.LATERAL and then append the modifier here:
joinModifier
JoinPart
JoinModifier.LATERAL
https://github.com/JetBrains/Exposed/blob/master/exposed-core/src/main/kotlin/org/jetbrains/exposed/sql/Table.kt#L215
I am, however, unsure of where best to pass the modifier.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Postgres has added support for LATERAL joins:
https://www.postgresql.org/docs/9.4/queries-table-expressions.html
Can we please add support for those types of join to exposed?
The text was updated successfully, but these errors were encountered: