sealed case class InternalQuery(select: Option[SelectQuery] = None, from: Option[FromQuery] = None, prewhere: Option[TableColumn[Boolean]] = None, where: Option[TableColumn[Boolean]] = None, groupBy: Option[GroupByQuery] = None, having: Option[TableColumn[Boolean]] = None, join: Option[JoinQuery] = None, orderBy: Seq[(Column, OrderingDirection)] = Seq.empty, limit: Option[Limit] = None, unionAll: Seq[OperationalQuery] = Seq.empty) extends Product with Serializable
- Alphabetic
- By Inheritance
- InternalQuery
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new InternalQuery(select: Option[SelectQuery] = None, from: Option[FromQuery] = None, prewhere: Option[TableColumn[Boolean]] = None, where: Option[TableColumn[Boolean]] = None, groupBy: Option[GroupByQuery] = None, having: Option[TableColumn[Boolean]] = None, join: Option[JoinQuery] = None, orderBy: Seq[(Column, OrderingDirection)] = Seq.empty, limit: Option[Limit] = None, unionAll: Seq[OperationalQuery] = Seq.empty)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
+(other: InternalQuery): Try[InternalQuery]
Tries to merge this InternalQuery with other
Tries to merge this InternalQuery with other
- other
The Query parts to merge against
- returns
A Success on merge without conflict, or Failure of IllegalArgumentException otherwise.
-
def
:+>(other: InternalQuery): InternalQuery
Merge with another InternalQuery, any conflict on query parts between the 2 joins will be resolved by preferring the left querypart over the right one.
Merge with another InternalQuery, any conflict on query parts between the 2 joins will be resolved by preferring the left querypart over the right one.
- other
The right part to merge with this InternalQuery
- returns
A merge of this and other InternalQuery
-
def
<+:(other: InternalQuery): InternalQuery
Right associative version of the merge (:+>) operator.
Right associative version of the merge (:+>) operator.
- other
The left part to merge with this InternalQuery
- returns
A merge of this and other OperationalQuery
-
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( ... ) @native() @HotSpotIntrinsicCandidate()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val from: Option[FromQuery]
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val groupBy: Option[GroupByQuery]
- val having: Option[TableColumn[Boolean]]
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isPartial: Boolean
- def isValid: Boolean
- val join: Option[JoinQuery]
- val limit: Option[Limit]
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val orderBy: Seq[(Column, OrderingDirection)]
- val prewhere: Option[TableColumn[Boolean]]
- val select: Option[SelectQuery]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val unionAll: Seq[OperationalQuery]
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- val where: Option[TableColumn[Boolean]]
Deprecated Value Members
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] ) @Deprecated @deprecated
- Deprecated
(Since version ) see corresponding Javadoc for more information.