Github user suez1224 commented on a diff in the pull request:
https://github.com/apache/flink/pull/4585#discussion_r140089018
--- Diff:
flink-libraries/flink-table/src/test/scala/org/apache/flink/table/runtime/batch/sql/AggregateITCase.scala
---
@@ -329,6 +329,35 @@ class AggregateITCase(
}
@Test
+ def testTumbleWindowAggregateWithCollect(): Unit = {
+
+ val env = ExecutionEnvironment.getExecutionEnvironment
+ val tEnv = TableEnvironment.getTableEnvironment(env, config)
+
+ val sqlQuery =
+ "SELECT b, COLLECT(b)" +
--- End diff --
Updated the documentation.
Table API ticket created:
https://issues.apache.org/jira/browse/FLINK-7658?filter=-1
---