case class Select(input: Query, projections: Option[Vector[SelectProjection]] = None, selection: Vector[Condition] = Vector.empty) extends Query with Product with Serializable
A Select selects elements from a stream of tabular rows. (Like in SQL Selects), transforms and filters them
Mantik only supports a subset of SQL Selects yet, however it's a design goal that improvements should be solved similar to SQL if applicable.
- projections
the columns which are returned, if None all are returned.
- selection
AND-concatenated filters
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Select
- Serializable
- Product
- Equals
- Query
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new Select(input: Query, projections: Option[Vector[SelectProjection]] = None, selection: Vector[Condition] = Vector.empty)
- projections
the columns which are returned, if None all are returned.
- selection
AND-concatenated filters
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- 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(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val input: Query
- def inputTabularType: TabularData
- def inputType: QueryTabularType
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- 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()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val projections: Option[Vector[SelectProjection]]
- def resultingQueryType: QueryTabularType
- lazy val resultingTabularType: TabularData
Resulting tabular type, shadowing if necessary.
Resulting tabular type, shadowing if necessary.
- Definition Classes
- Query
- def run(inputs: TabularBundle*): Either[String, TabularBundle]
Execute this query on a number of bundles
Execute this query on a number of bundles
- Definition Classes
- Query
- val selection: Vector[Condition]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toStatement: String
- Definition Classes
- Query
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])