class LateralJoinOps[C[_, _], Q, R] extends AnyRef
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
- Alphabetic
- By Inheritance
- LateralJoinOps
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- def crossJoinLateral[Q2, R2](): Mapper[Q, Q2, R, R2]
Version of
crossJoinLateral
meant for use infor
-comprehensions - def crossJoinLateral[Q2, R2, QF, RF](other: (Q) => Joinable[Q2, R2])(implicit ja: JoinAppend[Q, Q2, QF, RF]): C[QF, RF]
Performs a
CROSS JOIN LATERAL
, similar toCROSS JOIN
but allows theJOIN
clause to access the results of earlierJOIN
andFROM
clauses.Performs a
CROSS JOIN LATERAL
, similar toCROSS JOIN
but allows theJOIN
clause to access the results of earlierJOIN
andFROM
clauses. Only supported by Postgres and MySql - final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def joinLateral[Q2, R2](on: (Q) => Expr[Boolean]): Mapper[Q, Q2, R, R2]
Version of
joinLateral
meant for use infor
-comprehensions - 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]
Performs a
JOIN LATERAL
, similar toJOIN
but allows theJOIN
clause to access the results of earlierJOIN
andFROM
clauses.Performs a
JOIN LATERAL
, similar toJOIN
but allows theJOIN
clause to access the results of earlierJOIN
andFROM
clauses. Only supported by Postgres and MySql - def leftJoinLateral[Q2, R2](on: (Q) => Expr[Boolean]): NullableMapper[Q, Q2, R, R2]
Version of
leftJoinLateral
meant for use infor
-comprehensions - def leftJoinLateral[Q2, R2](other: (Q) => Joinable[Q2, R2])(on: (Q, Q2) => Expr[Boolean])(implicit joinQr: Row[Q2, R2]): Select[(Q, JoinNullable[Q2]), (R, Option[R2])]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)