class DistinctTableResult extends TableResult

Computes DISTINCT or DISTINCT ON on the input

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DistinctTableResult
  2. TableResult
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new DistinctTableResult(evaluator: ScalExprEvaluator, exprs: List[ScalExpr], limitOpt: Option[Int], offset: Int, inputResult: TableResult)

    evaluator

    Scalar expression evaluator

    exprs

    Expressions to group on (assuming the input is sorted on these)

    limitOpt

    Limit (optional) within each group

    offset

    Offset within each group

    inputResult

    Streaming input on which the operator is evaluated

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() @HotSpotIntrinsicCandidate()
  6. def close(): Unit

    Close the result, and free the resources

    Close the result, and free the resources

    Definition Classes
    DistinctTableResultTableResult
  7. def column(col: ColRef): Column

    Returns the column object associated with the given name

    Returns the column object associated with the given name

    Definition Classes
    TableResult
  8. def column(name: String): Column

    Returns the column object associated with the given name

    Returns the column object associated with the given name

    name

    Name of the column (case-insensitive)

    Definition Classes
    TableResult
  9. lazy val columnMap: Map[String, Column]

    Map from column name to column object

    Map from column name to column object

    Definition Classes
    TableResult
  10. def columnOpt(col: ColRef): Option[Column]

    Returns the column object associated with the given name, if present

    Returns the column object associated with the given name, if present

    Definition Classes
    TableResult
  11. def columnOpt(name: String): Option[Column]

    Returns the column object associated with the given name, if present

    Returns the column object associated with the given name, if present

    name

    Name of the column (case-insensitive)

    Definition Classes
    TableResult
  12. val columns: List[Column]

    List of columns in the result

    List of columns in the result

    Definition Classes
    DistinctTableResultTableResult
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  15. def format: List[String]

    Format the table result (assumed finite)

    Format the table result (assumed finite)

    Definition Classes
    TableResult
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. val resultOrder: List[SortExpr]

    Ordering of the rows in the result

    Ordering of the rows in the result

    Definition Classes
    DistinctTableResultTableResult
  23. def rows: Iterator[TableRow]

    Iterator over the rows in the result

    Iterator over the rows in the result

    Definition Classes
    DistinctTableResultTableResult
  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. def typedRows: Iterator[ScalTableRow]

    Iterator over the rows in the result with included schema information

    Iterator over the rows in the result with included schema information

    Definition Classes
    TableResult
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. 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.

Inherited from TableResult

Inherited from AnyRef

Inherited from Any

Ungrouped