Github user sunjincheng121 commented on a diff in the pull request: https://github.com/apache/flink/pull/4133#discussion_r122378757 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/plan/logical/operators.scala --- @@ -652,6 +653,21 @@ case class WindowAggregate( case ValidationSuccess => // ok } + // validate property + if (propertyExpressions.nonEmpty) { + resolvedWindowAggregate.window match { + case TumblingGroupWindow(_, _, size) if isRowCountLiteral(size) => + failValidation("Window start and Window end are not accessed " + + "on row-counts Tumbling window.") --- End diff -- `row-counts` -> `row-count`
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---