JoinAppend

scalasql.query.JoinAppend
See theJoinAppend companion object
trait JoinAppend[Q, Q2, QF, RF]

Typeclass to allow .join to append tuples, such that Query[(A, B)].join(Query[C]) returns a flat Query[(A, B, C)] rather than a nested Query[((A, B), B)]. Can't eliminate nesting in all cases, but eliminates nesting often enough to be useful

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def appendTuple(t: Q, v: Q2): QF
def qr: Row[QF, RF]