Hi, is there a way to add lateral to a join (Postg...
# exposed
d
Hi, is there a way to add lateral to a join (PostgreSQL)? The current implementation is very close: https://github.com/JetBrains/Exposed/blob/master/exposed-core/src/main/kotlin/org/jetbrains/exposed/sql/Table.kt#L215 I only need " JOIN LATERAL " instead of " JOIN " Any suggestions on where to start?
b
Unfortunately no. You need to make your own implementation of
Join
d
Thought so, thanks. I have responded to an issue about it here: https://github.com/JetBrains/Exposed/issues/899 I'll see if I can do it through my own implementation of
Join