Class

org.apache.spark.sql.catalyst.expressions.aggregate

TypedImperativeAggregate

Related Doc: package aggregate

Permalink

abstract class TypedImperativeAggregate[T] extends ImperativeAggregate

Aggregation function which allows **arbitrary** user-defined java object to be used as internal aggregation buffer.

aggregation buffer for normal aggregation function `avg`            aggregate buffer for `sum`
          |                                                                  |
          v                                                                  v
        +--------------+---------------+-----------------------------------+-------------+
        |  sum1 (Long) | count1 (Long) | generic user-defined java objects | sum2 (Long) |
        +--------------+---------------+-----------------------------------+-------------+
                                         ^
                                         |
          aggregation buffer object for `TypedImperativeAggregate` aggregation function

General work flow:

Stage 1: initialize aggregate buffer object.

  1. The framework calls initialize(buffer: MutableRow) to set up the empty aggregate buffer. 2. In initialize, we call createAggregationBuffer(): T to get the initial buffer object, and set it to the global buffer row.

Stage 2: process input rows.

If the aggregate mode is Partial or Complete:

  1. The framework calls update(buffer: MutableRow, input: InternalRow) to process the input row. 2. In update, we get the buffer object from the global buffer row and call update(buffer: T, input: InternalRow): Unit.

If the aggregate mode is PartialMerge or Final:

  1. The framework call merge(buffer: MutableRow, inputBuffer: InternalRow) to process the input row, which are serialized buffer objects shuffled from other nodes. 2. In merge, we get the buffer object from the global buffer row, and get the binary data from input row and deserialize it to buffer object, then we call merge(buffer: T, input: T): Unit to merge these 2 buffer objects.

Stage 3: output results.

If the aggregate mode is Partial or PartialMerge:

  1. The framework calls serializeAggregateBufferInPlace to replace the buffer object in the global buffer row with binary data. 2. In serializeAggregateBufferInPlace, we get the buffer object from the global buffer row and call serialize(buffer: T): Array[Byte] to serialize the buffer object to binary. 3. The framework outputs buffer attributes and shuffle them to other nodes.

If the aggregate mode is Final or Complete:

  1. The framework calls eval(buffer: InternalRow) to calculate the final result. 2. In eval, we get the buffer object from the global buffer row and call eval(buffer: T): Any to get the final result. 3. The framework outputs these final results.

Window function work flow: The framework calls update(buffer: MutableRow, input: InternalRow) several times and then call eval(buffer: InternalRow), so there is no need for window operator to call serializeAggregateBufferInPlace.

NOTE: SQL with TypedImperativeAggregate functions is planned in sort based aggregation, instead of hash based aggregation, as TypedImperativeAggregate use BinaryType as aggregation buffer's storage format, which is not supported by hash based aggregation. Hash based aggregation only support aggregation buffer of mutable types (like LongType, IntType that have fixed length and can be mutated in place in UnsafeRow). NOTE: The newly added ObjectHashAggregateExec supports TypedImperativeAggregate functions in hash based aggregation under some constraints.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TypedImperativeAggregate
  2. ImperativeAggregate
  3. CodegenFallback
  4. AggregateFunction
  5. Expression
  6. TreeNode
  7. Product
  8. Equals
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TypedImperativeAggregate()

    Permalink

Abstract Value Members

  1. abstract def canEqual(that: Any): Boolean

    Permalink
    Definition Classes
    Equals
  2. abstract def children: Seq[Expression]

    Permalink

    Returns a Seq of the children of this node.

    Returns a Seq of the children of this node. Children should not change. Immutability required for containsChild optimization

    Definition Classes
    TreeNode
  3. abstract def createAggregationBuffer(): T

    Permalink

    Creates an empty aggregation buffer object.

    Creates an empty aggregation buffer object. This is called before processing each key group (group by key).

    returns

    an aggregation buffer object

  4. abstract def dataType: DataType

    Permalink

    Returns the DataType of the result of evaluating this expression.

    Returns the DataType of the result of evaluating this expression. It is invalid to query the dataType of an unresolved expression (i.e., when resolved == false).

    Definition Classes
    Expression
  5. abstract def deserialize(storageFormat: Array[Byte]): T

    Permalink

    De-serializes the serialized format Array[Byte], and produces aggregation buffer object T

  6. abstract def eval(buffer: T): Any

    Permalink

    Generates the final aggregation result value for current key group with the aggregation buffer object.

    Generates the final aggregation result value for current key group with the aggregation buffer object.

    buffer

    aggregation buffer object.

    returns

    The aggregation result of current key group

  7. abstract val inputAggBufferOffset: Int

    Permalink

    The offset of this function's start buffer value in the underlying shared input aggregation buffer.

    The offset of this function's start buffer value in the underlying shared input aggregation buffer. An input aggregation buffer is used when we merge two aggregation buffers together in the update() function and is immutable (we merge an input aggregation buffer and a mutable aggregation buffer and then store the new buffer values to the mutable aggregation buffer).

    An input aggregation buffer may contain extra fields, such as grouping keys, at its start, so mutableAggBufferOffset and inputAggBufferOffset are often different.

    For example, say we have a grouping expression, key, and two aggregate functions, avg(x) and avg(y). In the shared input aggregation buffer, the position of the first buffer value of avg(x) will be 1 and the position of the first buffer value of avg(y) will be 3 (position 0 is used for the value of key):

    avg(x) inputAggBufferOffset = 1
             |
             v
    +--------+--------+--------+--------+--------+
    |  key   |  sum1  | count1 |  sum2  | count2 |
    +--------+--------+--------+--------+--------+
                               ^
                               |
                 avg(y) inputAggBufferOffset = 3
    Attributes
    protected
    Definition Classes
    ImperativeAggregate
  8. abstract def merge(buffer: T, input: T): T

    Permalink

    Merges an input aggregation object into aggregation buffer object and returns a new buffer object.

    Merges an input aggregation object into aggregation buffer object and returns a new buffer object. For performance, the function may do in-place merge and return it instead of constructing new buffer object.

    This is typically called when doing PartialMerge or Final mode aggregation.

    buffer

    the aggregation buffer object used to store the aggregation result.

    input

    an input aggregation object. Input aggregation object can be produced by de-serializing the partial aggregate's output from Mapper side.

  9. abstract val mutableAggBufferOffset: Int

    Permalink

    The offset of this function's first buffer value in the underlying shared mutable aggregation buffer.

    The offset of this function's first buffer value in the underlying shared mutable aggregation buffer.

    For example, we have two aggregate functions avg(x) and avg(y), which share the same aggregation buffer. In this shared buffer, the position of the first buffer value of avg(x) will be 0 and the position of the first buffer value of avg(y) will be 2:

    avg(x) mutableAggBufferOffset = 0
            |
            v
            +--------+--------+--------+--------+
            |  sum1  | count1 |  sum2  | count2 |
            +--------+--------+--------+--------+
                              ^
                              |
               avg(y) mutableAggBufferOffset = 2
    Attributes
    protected
    Definition Classes
    ImperativeAggregate
  10. abstract def nullable: Boolean

    Permalink
    Definition Classes
    Expression
  11. abstract def productArity: Int

    Permalink
    Definition Classes
    Product
  12. abstract def productElement(n: Int): Any

    Permalink
    Definition Classes
    Product
  13. abstract def serialize(buffer: T): Array[Byte]

    Permalink

    Serializes the aggregation buffer object T to Array[Byte]

  14. abstract def update(buffer: T, input: InternalRow): T

    Permalink

    Updates the aggregation buffer object with an input row and returns a new buffer object.

    Updates the aggregation buffer object with an input row and returns a new buffer object. For performance, the function may do in-place update and return it instead of constructing new buffer object.

    This is typically called when doing Partial or Complete mode aggregation.

    buffer

    The aggregation buffer object.

    input

    an input row

  15. abstract def withNewInputAggBufferOffset(newInputAggBufferOffset: Int): ImperativeAggregate

    Permalink

    Returns a copy of this ImperativeAggregate with an updated mutableAggBufferOffset.

    Returns a copy of this ImperativeAggregate with an updated mutableAggBufferOffset. This new copy's attributes may have different ids than the original.

    Definition Classes
    ImperativeAggregate
  16. abstract def withNewMutableAggBufferOffset(newMutableAggBufferOffset: Int): ImperativeAggregate

    Permalink

    Returns a copy of this ImperativeAggregate with an updated mutableAggBufferOffset.

    Returns a copy of this ImperativeAggregate with an updated mutableAggBufferOffset. This new copy's attributes may have different ids than the original.

    Definition Classes
    ImperativeAggregate

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final lazy val aggBufferAttributes: Seq[AttributeReference]

    Permalink

    Attributes of fields in aggBufferSchema.

    Attributes of fields in aggBufferSchema.

    Definition Classes
    TypedImperativeAggregateAggregateFunction
  5. final def aggBufferSchema: StructType

    Permalink

    The schema of the aggregation buffer.

    The schema of the aggregation buffer.

    Definition Classes
    TypedImperativeAggregateAggregateFunction
  6. def apply(number: Int): TreeNode[_]

    Permalink

    Returns the tree node at the specified number, used primarily for interactive debugging.

    Returns the tree node at the specified number, used primarily for interactive debugging. Numbers for each node can be found in the numberedTreeString.

    Note that this cannot return BaseType because logical plan's plan node might return physical plan for innerChildren, e.g. in-memory relation logical plan node has a reference to the physical plan node it is referencing.

    Definition Classes
    TreeNode
  7. def argString: String

    Permalink

    Returns a string representing the arguments to this node, minus any children

    Returns a string representing the arguments to this node, minus any children

    Definition Classes
    TreeNode
  8. def asCode: String

    Permalink

    Returns a 'scala code' representation of this TreeNode and its children.

    Returns a 'scala code' representation of this TreeNode and its children. Intended for use when debugging where the prettier toString function is obfuscating the actual structure. In the case of 'pure' TreeNodes that only contain primitives and other TreeNodes, the result can be pasted in the REPL to build an equivalent Tree.

    Definition Classes
    TreeNode
  9. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  10. lazy val canonicalized: Expression

    Permalink

    Returns an expression where a best effort attempt has been made to transform this in a way that preserves the result but removes cosmetic variations (case sensitivity, ordering for commutative operations, etc.) See Canonicalize for more details.

    Returns an expression where a best effort attempt has been made to transform this in a way that preserves the result but removes cosmetic variations (case sensitivity, ordering for commutative operations, etc.) See Canonicalize for more details.

    deterministic expressions where this.canonicalized == other.canonicalized will always evaluate to the same result.

    Definition Classes
    Expression
  11. def checkInputDataTypes(): TypeCheckResult

    Permalink

    Checks the input data types, returns TypeCheckResult.success if it's valid, or returns a TypeCheckResult with an error message if invalid.

    Checks the input data types, returns TypeCheckResult.success if it's valid, or returns a TypeCheckResult with an error message if invalid. Note: it's not valid to call this method until childrenResolved == true.

    Definition Classes
    Expression
  12. def childrenResolved: Boolean

    Permalink

    Returns true if all the children of this expression have been resolved to a specific schema and false if any still contains any unresolved placeholders.

    Returns true if all the children of this expression have been resolved to a specific schema and false if any still contains any unresolved placeholders.

    Definition Classes
    Expression
  13. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def collect[B](pf: PartialFunction[Expression, B]): Seq[B]

    Permalink

    Returns a Seq containing the result of applying a partial function to all elements in this tree on which the function is defined.

    Returns a Seq containing the result of applying a partial function to all elements in this tree on which the function is defined.

    Definition Classes
    TreeNode
  15. def collectFirst[B](pf: PartialFunction[Expression, B]): Option[B]

    Permalink

    Finds and returns the first TreeNode of the tree for which the given partial function is defined (pre-order), and applies the partial function to it.

    Finds and returns the first TreeNode of the tree for which the given partial function is defined (pre-order), and applies the partial function to it.

    Definition Classes
    TreeNode
  16. def collectLeaves(): Seq[Expression]

    Permalink

    Returns a Seq containing the leaves in this tree.

    Returns a Seq containing the leaves in this tree.

    Definition Classes
    TreeNode
  17. lazy val containsChild: Set[TreeNode[_]]

    Permalink
    Definition Classes
    TreeNode
  18. def defaultResult: Option[Literal]

    Permalink

    Result of the aggregate function when the input is empty.

    Result of the aggregate function when the input is empty. This is currently only used for the proper rewriting of distinct aggregate functions.

    Definition Classes
    AggregateFunction
  19. def deterministic: Boolean

    Permalink

    Returns true when the current expression always return the same result for fixed inputs from children.

    Returns true when the current expression always return the same result for fixed inputs from children.

    Note that this means that an expression should be considered as non-deterministic if: - it relies on some mutable internal state, or - it relies on some implicit input that is not part of the children expression list. - it has non-deterministic child or children.

    An example would be SparkPartitionID that relies on the partition id returned by TaskContext. By default leaf expressions are deterministic as Nil.forall(_.deterministic) returns true.

    Definition Classes
    Expression
  20. def doGenCode(ctx: CodegenContext, ev: ExprCode): ExprCode

    Permalink

    Returns Java source code that can be compiled to evaluate this expression.

    Returns Java source code that can be compiled to evaluate this expression. The default behavior is to call the eval method of the expression. Concrete expression implementations should override this to do actual code generation.

    ctx

    a CodegenContext

    ev

    an ExprCode with unique terms.

    returns

    an ExprCode containing the Java source code to generate the given expression

    Attributes
    protected
    Definition Classes
    CodegenFallbackExpression
  21. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  22. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  23. final def eval(buffer: InternalRow): Any

    Permalink

    Returns the result of evaluating this expression on a given input Row

    Returns the result of evaluating this expression on a given input Row

    Definition Classes
    TypedImperativeAggregateExpression
  24. def fastEquals(other: TreeNode[_]): Boolean

    Permalink

    Faster version of equality which short-circuits when two treeNodes are the same instance.

    Faster version of equality which short-circuits when two treeNodes are the same instance. We don't just override Object.equals, as doing so prevents the scala compiler from generating case class equals methods

    Definition Classes
    TreeNode
  25. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  26. def find(f: (Expression) ⇒ Boolean): Option[Expression]

    Permalink

    Find the first TreeNode that satisfies the condition specified by f.

    Find the first TreeNode that satisfies the condition specified by f. The condition is recursively applied to this node and all of its children (pre-order).

    Definition Classes
    TreeNode
  27. def flatArguments: Iterator[Any]

    Permalink
    Attributes
    protected
    Definition Classes
    Expression
  28. def flatMap[A](f: (Expression) ⇒ TraversableOnce[A]): Seq[A]

    Permalink

    Returns a Seq by applying a function to all nodes in this tree and using the elements of the resulting collections.

    Returns a Seq by applying a function to all nodes in this tree and using the elements of the resulting collections.

    Definition Classes
    TreeNode
  29. final def foldable: Boolean

    Permalink

    An aggregate function is not foldable.

    An aggregate function is not foldable.

    Definition Classes
    AggregateFunctionExpression
  30. def foreach(f: (Expression) ⇒ Unit): Unit

    Permalink

    Runs the given function on this node and then recursively on children.

    Runs the given function on this node and then recursively on children.

    f

    the function to be applied to each node in the tree.

    Definition Classes
    TreeNode
  31. def foreachUp(f: (Expression) ⇒ Unit): Unit

    Permalink

    Runs the given function recursively on children then on this node.

    Runs the given function recursively on children then on this node.

    f

    the function to be applied to each node in the tree.

    Definition Classes
    TreeNode
  32. def genCode(ctx: CodegenContext): ExprCode

    Permalink

    Returns an ExprCode, that contains the Java source code to generate the result of evaluating the expression on an input row.

    Returns an ExprCode, that contains the Java source code to generate the result of evaluating the expression on an input row.

    ctx

    a CodegenContext

    returns

    ExprCode

    Definition Classes
    Expression
  33. def generateTreeString(depth: Int, lastChildren: Seq[Boolean], builder: StringBuilder, verbose: Boolean, prefix: String = "", addSuffix: Boolean = false): StringBuilder

    Permalink

    Appends the string represent of this node and its children to the given StringBuilder.

    Appends the string represent of this node and its children to the given StringBuilder.

    The i-th element in lastChildren indicates whether the ancestor of the current node at depth i + 1 is the last child of its own parent node. The depth of the root node is 0, and lastChildren for the root node should be empty.

    Note that this traversal (numbering) order must be the same as getNodeNumbered.

    Definition Classes
    TreeNode
  34. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  35. def hashCode(): Int

    Permalink
    Definition Classes
    TreeNode → AnyRef → Any
  36. final def initialize(buffer: InternalRow): Unit

    Permalink

    Initializes the mutable aggregation buffer located in mutableAggBuffer.

    Initializes the mutable aggregation buffer located in mutableAggBuffer.

    Use fieldNumber + mutableAggBufferOffset to access fields of mutableAggBuffer.

    Definition Classes
    TypedImperativeAggregateImperativeAggregate
  37. def innerChildren: Seq[TreeNode[_]]

    Permalink

    All the nodes that should be shown as a inner nested tree of this node.

    All the nodes that should be shown as a inner nested tree of this node. For example, this can be used to show sub-queries.

    Attributes
    protected
    Definition Classes
    TreeNode
  38. final lazy val inputAggBufferAttributes: Seq[AttributeReference]

    Permalink

    Attributes of fields in input aggregation buffers (immutable aggregation buffers that are merged with mutable aggregation buffers in the merge() function or merge expressions).

    Attributes of fields in input aggregation buffers (immutable aggregation buffers that are merged with mutable aggregation buffers in the merge() function or merge expressions). These attributes are created automatically by cloning the aggBufferAttributes.

    Definition Classes
    TypedImperativeAggregateAggregateFunction
  39. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  40. def jsonFields: List[JField]

    Permalink
    Attributes
    protected
    Definition Classes
    TreeNode
  41. def makeCopy(newArgs: Array[AnyRef]): Expression

    Permalink

    Creates a copy of this type of tree node after a transformation.

    Creates a copy of this type of tree node after a transformation. Must be overridden by child classes that have constructor arguments that are not present in the productIterator.

    newArgs

    the new product arguments.

    Definition Classes
    TreeNode
  42. def map[A](f: (Expression) ⇒ A): Seq[A]

    Permalink

    Returns a Seq containing the result of applying the given function to each node in this tree in a preorder traversal.

    Returns a Seq containing the result of applying the given function to each node in this tree in a preorder traversal.

    f

    the function to be applied.

    Definition Classes
    TreeNode
  43. def mapChildren(f: (Expression) ⇒ Expression): Expression

    Permalink

    Returns a copy of this node where f has been applied to all the nodes children.

    Returns a copy of this node where f has been applied to all the nodes children.

    Definition Classes
    TreeNode
  44. def mapProductIterator[B](f: (Any) ⇒ B)(implicit arg0: ClassTag[B]): Array[B]

    Permalink

    Efficient alternative to productIterator.map(f).toArray.

    Efficient alternative to productIterator.map(f).toArray.

    Attributes
    protected
    Definition Classes
    TreeNode
  45. final def merge(buffer: InternalRow, inputBuffer: InternalRow): Unit

    Permalink

    Combines new intermediate results from the inputAggBuffer with the existing intermediate results in the mutableAggBuffer.

    Combines new intermediate results from the inputAggBuffer with the existing intermediate results in the mutableAggBuffer.

    Use fieldNumber + mutableAggBufferOffset to access fields of mutableAggBuffer. Use fieldNumber + inputAggBufferOffset to access fields of inputAggBuffer.

    Definition Classes
    TypedImperativeAggregateImperativeAggregate
  46. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  47. def nodeName: String

    Permalink

    Returns the name of this type of TreeNode.

    Returns the name of this type of TreeNode. Defaults to the class name. Note that we remove the "Exec" suffix for physical operators here.

    Definition Classes
    TreeNode
  48. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  49. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  50. def numberedTreeString: String

    Permalink

    Returns a string representation of the nodes in this tree, where each operator is numbered.

    Returns a string representation of the nodes in this tree, where each operator is numbered. The numbers can be used with TreeNode.apply to easily access specific subtrees.

    The numbers are based on depth-first traversal of the tree (with innerChildren traversed first before children).

    Definition Classes
    TreeNode
  51. val origin: Origin

    Permalink
    Definition Classes
    TreeNode
  52. def otherCopyArgs: Seq[AnyRef]

    Permalink

    Args to the constructor that should be copied, but not transformed.

    Args to the constructor that should be copied, but not transformed. These are appended to the transformed args automatically by makeCopy

    Attributes
    protected
    Definition Classes
    TreeNode
  53. def p(number: Int): Expression

    Permalink

    Returns the tree node at the specified number, used primarily for interactive debugging.

    Returns the tree node at the specified number, used primarily for interactive debugging. Numbers for each node can be found in the numberedTreeString.

    This is a variant of apply that returns the node as BaseType (if the type matches).

    Definition Classes
    TreeNode
  54. def prettyJson: String

    Permalink
    Definition Classes
    TreeNode
  55. def prettyName: String

    Permalink

    Returns a user-facing string representation of this expression's name.

    Returns a user-facing string representation of this expression's name. This should usually match the name of the function in SQL.

    Definition Classes
    Expression
  56. def productIterator: Iterator[Any]

    Permalink
    Definition Classes
    Product
  57. def productPrefix: String

    Permalink
    Definition Classes
    Product
  58. def references: AttributeSet

    Permalink
    Definition Classes
    Expression
  59. lazy val resolved: Boolean

    Permalink

    Returns true if this expression and all its children have been resolved to a specific schema and input data types checking passed, and false if it still contains any unresolved placeholders or has data types mismatch.

    Returns true if this expression and all its children have been resolved to a specific schema and input data types checking passed, and false if it still contains any unresolved placeholders or has data types mismatch. Implementations of expressions should override this if the resolution of this type of expression involves more than just the resolution of its children and type checking.

    Definition Classes
    Expression
  60. def semanticEquals(other: Expression): Boolean

    Permalink

    Returns true when two expressions will always compute the same result, even if they differ cosmetically (i.e.

    Returns true when two expressions will always compute the same result, even if they differ cosmetically (i.e. capitalization of names in attributes may be different).

    See Canonicalize for more details.

    Definition Classes
    Expression
  61. def semanticHash(): Int

    Permalink

    Returns a hashCode for the calculation performed by this expression.

    Returns a hashCode for the calculation performed by this expression. Unlike the standard hashCode, an attempt has been made to eliminate cosmetic differences.

    See Canonicalize for more details.

    Definition Classes
    Expression
  62. final def serializeAggregateBufferInPlace(buffer: InternalRow): Unit

    Permalink

    In-place replaces the aggregation buffer object stored at buffer's index mutableAggBufferOffset, with SparkSQL internally supported underlying storage format (BinaryType).

    In-place replaces the aggregation buffer object stored at buffer's index mutableAggBufferOffset, with SparkSQL internally supported underlying storage format (BinaryType).

    This is only called when doing Partial or PartialMerge mode aggregation, before the framework shuffle out aggregate buffers.

  63. def simpleString: String

    Permalink

    ONE line description of this node.

    ONE line description of this node.

    Definition Classes
    ExpressionTreeNode
  64. def sql(isDistinct: Boolean): String

    Permalink
    Definition Classes
    AggregateFunction
  65. def sql: String

    Permalink

    Returns SQL representation of this expression.

    Returns SQL representation of this expression. For expressions extending NonSQLExpression, this method may return an arbitrary user facing string.

    Definition Classes
    Expression
  66. def stringArgs: Iterator[Any]

    Permalink

    The arguments that should be included in the arg string.

    The arguments that should be included in the arg string. Defaults to the productIterator.

    Attributes
    protected
    Definition Classes
    TreeNode
  67. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  68. def toAggString(isDistinct: Boolean): String

    Permalink

    String representation used in explain plans.

    String representation used in explain plans.

    Definition Classes
    AggregateFunction
  69. def toAggregateExpression(isDistinct: Boolean): AggregateExpression

    Permalink

    Wraps this AggregateFunction in an AggregateExpression and set isDistinct field of the AggregateExpression to the given value because AggregateExpression is the container of an AggregateFunction, aggregation mode, and the flag indicating if this aggregation is distinct aggregation or not.

    Wraps this AggregateFunction in an AggregateExpression and set isDistinct field of the AggregateExpression to the given value because AggregateExpression is the container of an AggregateFunction, aggregation mode, and the flag indicating if this aggregation is distinct aggregation or not. An AggregateFunction should not be used without being wrapped in an AggregateExpression.

    Definition Classes
    AggregateFunction
  70. def toAggregateExpression(): AggregateExpression

    Permalink

    Wraps this AggregateFunction in an AggregateExpression because AggregateExpression is the container of an AggregateFunction, aggregation mode, and the flag indicating if this aggregation is distinct aggregation or not.

    Wraps this AggregateFunction in an AggregateExpression because AggregateExpression is the container of an AggregateFunction, aggregation mode, and the flag indicating if this aggregation is distinct aggregation or not. An AggregateFunction should not be used without being wrapped in an AggregateExpression.

    Definition Classes
    AggregateFunction
  71. def toJSON: String

    Permalink
    Definition Classes
    TreeNode
  72. def toString(): String

    Permalink
    Definition Classes
    ExpressionTreeNode → AnyRef → Any
  73. def transform(rule: PartialFunction[Expression, Expression]): Expression

    Permalink

    Returns a copy of this node where rule has been recursively applied to the tree.

    Returns a copy of this node where rule has been recursively applied to the tree. When rule does not apply to a given node it is left unchanged. Users should not expect a specific directionality. If a specific directionality is needed, transformDown or transformUp should be used.

    rule

    the function use to transform this nodes children

    Definition Classes
    TreeNode
  74. def transformDown(rule: PartialFunction[Expression, Expression]): Expression

    Permalink

    Returns a copy of this node where rule has been recursively applied to it and all of its children (pre-order).

    Returns a copy of this node where rule has been recursively applied to it and all of its children (pre-order). When rule does not apply to a given node it is left unchanged.

    rule

    the function used to transform this nodes children

    Definition Classes
    TreeNode
  75. def transformUp(rule: PartialFunction[Expression, Expression]): Expression

    Permalink

    Returns a copy of this node where rule has been recursively applied first to all of its children and then itself (post-order).

    Returns a copy of this node where rule has been recursively applied first to all of its children and then itself (post-order). When rule does not apply to a given node, it is left unchanged.

    rule

    the function use to transform this nodes children

    Definition Classes
    TreeNode
  76. def treeString(verbose: Boolean, addSuffix: Boolean = false): String

    Permalink
    Definition Classes
    TreeNode
  77. def treeString: String

    Permalink

    Returns a string representation of the nodes in this tree

    Returns a string representation of the nodes in this tree

    Definition Classes
    TreeNode
  78. final def update(buffer: InternalRow, input: InternalRow): Unit

    Permalink

    Updates its aggregation buffer, located in mutableAggBuffer, based on the given inputRow.

    Updates its aggregation buffer, located in mutableAggBuffer, based on the given inputRow.

    Use fieldNumber + mutableAggBufferOffset to access fields of mutableAggBuffer.

    Definition Classes
    TypedImperativeAggregateImperativeAggregate
  79. final def verboseString: String

    Permalink

    ONE line description of this node with more information

    ONE line description of this node with more information

    Definition Classes
    ExpressionTreeNode
  80. def verboseStringWithSuffix: String

    Permalink

    ONE line description of this node with some suffix information

    ONE line description of this node with some suffix information

    Definition Classes
    TreeNode
  81. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  82. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  83. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  84. def withNewChildren(newChildren: Seq[Expression]): Expression

    Permalink

    Returns a copy of this node with the children replaced.

    Returns a copy of this node with the children replaced. TODO: Validate somewhere (in debug mode?) that children are ordered correctly.

    Definition Classes
    TreeNode

Inherited from ImperativeAggregate

Inherited from CodegenFallback

Inherited from AggregateFunction

Inherited from Expression

Inherited from TreeNode[Expression]

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped