Packages

case class SubqueryRef(context: Context, name: String, subquery: SqlQuery, lateral: Boolean) extends TableExpr with Product with Serializable

Table expression corresponding to a subquery

Source
SqlMapping.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SubqueryRef
  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 SubqueryRef(context: Context, name: String, subquery: SqlQuery, lateral: Boolean)

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. def contains(other: ColumnOwner): Boolean
    Definition Classes
    SubqueryRefColumnOwner
  7. val context: Context
    Definition Classes
    SubqueryRefColumnOwner
  8. def debugShow: String
    Definition Classes
    ColumnOwner
  9. 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
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  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
    SubqueryRefTableExprColumnOwner
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  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
    SubqueryRefTableExpr
  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
    SubqueryRefTableExpr
  18. val lateral: Boolean
  19. val name: String

    The name of this TableExpr

    The name of this TableExpr

    Definition Classes
    SubqueryRefTableExpr
  20. def nameOption: Option[String]

    The name, if any, of this ColumnOwner

    The name, if any, of this ColumnOwner

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

    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
    SubqueryRefTableExpr
  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. def toDefFragment: Aliased[SqlMappingLike.Fragment]

    Render a defining occurence of this TableExpr

    Render a defining occurence of this TableExpr

    Definition Classes
    SubqueryRefTableExpr
  30. def toRefFragment: Aliased[SqlMappingLike.Fragment]

    Render a reference to this TableExpr

    Render a reference to this TableExpr

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

Inherited from TableExpr

Inherited from ColumnOwner

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped