Packages

case class DerivedTableRef(context: Context, alias: Option[String], underlying: TableExpr, noalias: Boolean = false) extends TableExpr with Product with Serializable

Table expression derived from the given TableExpr.

Typically used where we need to refer to a table defined in a subquery or common table expression.

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DerivedTableRef
  2. TableExpr
  3. ColumnOwner
  4. Serializable
  5. Product
  6. Equals
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new DerivedTableRef(context: Context, alias: Option[String], underlying: TableExpr, noalias: Boolean = false)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val alias: Option[String]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. def contains(other: ColumnOwner): Boolean
    Definition Classes
    DerivedTableRefColumnOwner
  8. val context: Context
    Definition Classes
    DerivedTableRefColumnOwner
  9. def debugShow: String
    Definition Classes
    ColumnOwner
  10. def directlyOwns(col: SqlColumn): Boolean

    Is the supplied column an immediate component of this TableExpr?

    Is the supplied column an immediate component of this TableExpr?

    Definition Classes
    TableExprColumnOwner
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def findNamedOwner(col: SqlColumn): Option[TableExpr]

    Find the innermost owner of the supplied column within this TableExpr

    Find the innermost owner of the supplied column within this TableExpr

    Definition Classes
    DerivedTableRefTableExprColumnOwner
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def isRoot: Boolean

    Is this TableRef an anoymous root

    Is this TableRef an anoymous root

    Definition Classes
    DerivedTableRefTableExpr
  16. def isSameOwner(other: ColumnOwner): Boolean
    Definition Classes
    ColumnOwner
  17. def isUnion: Boolean

    Is this TableExpr backed by an SQL union

    Is this TableExpr backed by an SQL union

    This is used to determine whether or not non-nullable columns should be weakened to being nullable when fetched

    Definition Classes
    DerivedTableRefTableExpr
  18. def name: String

    The name of this TableExpr

    The name of this TableExpr

    Definition Classes
    DerivedTableRefTableExpr
  19. def nameOption: Option[String]

    The name, if any, of this ColumnOwner

    The name, if any, of this ColumnOwner

    Definition Classes
    ColumnOwner
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. val noalias: Boolean
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. def owns(col: SqlColumn): Boolean
    Definition Classes
    DerivedTableRefColumnOwner
  25. def productElementNames: Iterator[String]
    Definition Classes
    Product
  26. def subst(from: TableExpr, to: TableExpr): DerivedTableRef

    Yields a copy of this TableExpr with all occurences of from replaced by to

    Yields a copy of this TableExpr with all occurences of from replaced by to

    Definition Classes
    DerivedTableRefTableExpr
  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. def toDefFragment: Aliased[SqlMappingLike.Fragment]

    Render a defining occurence of this TableExpr

    Render a defining occurence of this TableExpr

    Definition Classes
    DerivedTableRefTableExpr
  29. def toRefFragment: Aliased[SqlMappingLike.Fragment]

    Render a reference to this TableExpr

    Render a reference to this TableExpr

    Definition Classes
    DerivedTableRefTableExpr
  30. val underlying: TableExpr
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @Deprecated
    Deprecated

Inherited from TableExpr

Inherited from ColumnOwner

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped