Join

edu.gemini.grackle.sql.SqlMappingLike.Join
See theJoin companion object
case class Join(conditions: List[(ColumnRef, ColumnRef)])

A pair of ColumnRefs, representing a SQL join.

Attributes

Companion:
object
Source:
SqlMapping.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

def childCols(childTable0: TableExpr): List[SqlColumn]

Attributes

Source:
SqlMapping.scala
def childTable(parentContext: Context): TableRef

Attributes

Source:
SqlMapping.scala
def parentCols(parentTable0: TableExpr): List[SqlColumn]

Attributes

Source:
SqlMapping.scala
def parentTable(parentContext: Context): TableRef

Attributes

Source:
SqlMapping.scala
def toConstraints(parentContext: Context, childContext: Context): List[(SqlColumn, SqlColumn)]

Attributes

Source:
SqlMapping.scala
def toSqlColumns(parentTable0: TableExpr, childTable0: TableExpr): List[(SqlColumn, SqlColumn)]

Attributes

Source:
SqlMapping.scala
def toSqlColumns(parentContext: Context, childContext: Context): List[(SqlColumn, SqlColumn)]

Attributes

Source:
SqlMapping.scala

Attributes

Source:
SqlMapping.scala
def toSqlJoin(parentTable0: TableExpr, childTable0: TableExpr, inner: Boolean): SqlJoin

Attributes

Source:
SqlMapping.scala
def toSqlJoin(parentContext: Context, childContext: Context, inner: Boolean): SqlJoin

Attributes

Source:
SqlMapping.scala

Inherited methods

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product