Skip to content
Snippets Groups Projects
Commit 201a51f3 authored by Reynold Xin's avatar Reynold Xin
Browse files

[SPARK-15452][SQL] Mark aggregator API as experimental

## What changes were proposed in this pull request?
The Aggregator API was introduced in 2.0 for Dataset. All typed Dataset APIs should still be marked as experimental in 2.0.

## How was this patch tested?
N/A - annotation only change.

Author: Reynold Xin <rxin@databricks.com>

Closes #13226 from rxin/SPARK-15452.
parent 5e1ee289
No related branches found
No related tags found
No related merge requests found
...@@ -17,12 +17,14 @@ ...@@ -17,12 +17,14 @@
package org.apache.spark.sql.expressions package org.apache.spark.sql.expressions
import org.apache.spark.annotation.Experimental
import org.apache.spark.sql.{Dataset, Encoder, TypedColumn} import org.apache.spark.sql.{Dataset, Encoder, TypedColumn}
import org.apache.spark.sql.catalyst.encoders.encoderFor import org.apache.spark.sql.catalyst.encoders.encoderFor
import org.apache.spark.sql.catalyst.expressions.aggregate.{AggregateExpression, Complete} import org.apache.spark.sql.catalyst.expressions.aggregate.{AggregateExpression, Complete}
import org.apache.spark.sql.execution.aggregate.TypedAggregateExpression import org.apache.spark.sql.execution.aggregate.TypedAggregateExpression
/** /**
* :: Experimental ::
* A base class for user-defined aggregations, which can be used in [[Dataset]] operations to take * A base class for user-defined aggregations, which can be used in [[Dataset]] operations to take
* all of the elements of a group and reduce them to a single value. * all of the elements of a group and reduce them to a single value.
* *
...@@ -48,6 +50,7 @@ import org.apache.spark.sql.execution.aggregate.TypedAggregateExpression ...@@ -48,6 +50,7 @@ import org.apache.spark.sql.execution.aggregate.TypedAggregateExpression
* @tparam OUT The type of the final output result. * @tparam OUT The type of the final output result.
* @since 1.6.0 * @since 1.6.0
*/ */
@Experimental
abstract class Aggregator[-IN, BUF, OUT] extends Serializable { abstract class Aggregator[-IN, BUF, OUT] extends Serializable {
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment