Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
calasql-query_2.13.0.1.9.source-code.LateralJoinOps.scala Maven / Gradle / Ivy
package scalasql.query
import scalasql.core.{JoinNullable, Queryable, Expr, WithSqlExpr}
/**
* Wrapper class with extension methods to add support for `JOIN LATERAL`, which
* allow for `JOIN` clauses to access the results of earlier `JOIN` and `FROM` clauses.
* Only supported by Postgres and MySql
*/
class LateralJoinOps[C[_, _], Q, R](wrapped: JoinOps[C, Q, R] & Joinable[Q, R])(
implicit qr: Queryable.Row[Q, R]
) {
/**
* Performs a `CROSS JOIN LATERAL`, similar to `CROSS JOIN` but allows the
* `JOIN` clause to access the results of earlier `JOIN` and `FROM` clauses.
* Only supported by Postgres and MySql
*/
def crossJoinLateral[Q2, R2, QF, RF](other: Q => Joinable[Q2, R2])(
implicit ja: JoinAppend[Q, Q2, QF, RF]
): C[QF, RF] =
JoinOps.join0(wrapped, "CROSS JOIN LATERAL", other(WithSqlExpr.get(wrapped)), None)
/**
* Performs a `JOIN LATERAL`, similar to `JOIN` but allows the
* `JOIN` clause to access the results of earlier `JOIN` and `FROM` clauses.
* Only supported by Postgres and MySql
*/
def joinLateral[Q2, R2, QF, RF](other: Q => Joinable[Q2, R2])(on: (Q, Q2) => Expr[Boolean])(
implicit ja: JoinAppend[Q, Q2, QF, RF]
): C[QF, RF] =
JoinOps.join0(wrapped, "JOIN LATERAL", other(WithSqlExpr.get(wrapped)), Some(on))
def leftJoinLateral[Q2, R2](other: Q => Joinable[Q2, R2])(
on: (Q, Q2) => Expr[Boolean]
)(implicit joinQr: Queryable.Row[Q2, R2]): Select[(Q, JoinNullable[Q2]), (R, Option[R2])] = {
SimpleSelect.joinCopy(
wrapped.asInstanceOf[SimpleSelect[Q, R]],
other(WithSqlExpr.get(wrapped)),
Some(on),
"LEFT JOIN LATERAL"
)((e, o) => (e, JoinNullable(o)))
}
/**
* Version of `crossJoinLateral` meant for use in `for`-comprehensions
*/
def crossJoinLateral[Q2, R2](): FlatJoin.Mapper[Q, Q2, R, R2] = {
val (from, expr) = Joinable.toFromExpr(wrapped)
new FlatJoin.Mapper[Q, Q2, R, R2]("CROSS JOIN LATERAL", from, expr, None, Nil)
}
/**
* Version of `joinLateral` meant for use in `for`-comprehensions
*/
def joinLateral[Q2, R2](on: Q => Expr[Boolean]): FlatJoin.Mapper[Q, Q2, R, R2] = {
val (from, expr) = Joinable.toFromExpr(wrapped)
new FlatJoin.Mapper[Q, Q2, R, R2]("JOIN LATERAL", from, expr, Some(on(expr)), Nil)
}
/**
* Version of `leftJoinLateral` meant for use in `for`-comprehensions
*/
def leftJoinLateral[Q2, R2](on: Q => Expr[Boolean]): FlatJoin.NullableMapper[Q, Q2, R, R2] = {
val (from, expr) = Joinable.toFromExpr(wrapped)
new FlatJoin.NullableMapper[Q, Q2, R, R2](
"LEFT JOIN LATERAL",
from,
JoinNullable(expr),
Some(on(expr)),
Nil
)
}
}