sunjincheng121 commented on a change in pull request #7235: [FLINK-10976]
[table] Add support for aggregate to table API
URL: https://github.com/apache/flink/pull/7235#discussion_r244670383
##########
File path:
flink-libraries/flink-table/src/main/scala/org/apache/flink/table/api/table.scala
##########
@@ -999,6 +999,40 @@ class Table(
new OverWindowedTable(this, overWindows.toArray)
}
+ /**
+ * Performs a global aggregate operation with an aggregate function. Use
this before a selection
+ * to perform the selection operation. The output will be flattened if the
output type is a
+ * composite type.
+ *
+ * Example:
+ *
+ * {{{
+ * val aggFunc: AggregateFunction[_, _] = new MyAggregateFunction
+ * tableEnv.registerFunction("aggFunc", aggFunc);
+ * table.aggregate("aggFunc(a, b) as (f0, f1, f2)").select('f0, 'f1)
Review comment:
`aggregate("aggFunc(a, b) as (f0, f1, f2)")`-> `aggregate(testAgg('a) as
('f0, 'f1, 'f2))`
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services