You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by GitBox <gi...@apache.org> on 2022/01/21 05:36:49 UTC

[GitHub] [flink] MartijnVisser commented on a change in pull request #18414: [hotfix][docs]fix flink sql Cascading Window TVF Aggregation exception

MartijnVisser commented on a change in pull request #18414:
URL: https://github.com/apache/flink/pull/18414#discussion_r789373449



##########
File path: docs/content.zh/docs/dev/table/sql/queries/window-agg.md
##########
@@ -199,7 +199,7 @@ The following shows a cascading window aggregation where the first window aggreg
 ```sql
 -- tumbling 5 minutes for each supplier_id
 CREATE VIEW window1 AS
-SELECT window_start, window_end, window_time as rowtime, SUM(price) as partial_price
+SELECT window_start as window1_start, window_end as window1_end, window_time as rowtime, SUM(price) as partial_price

Review comment:
       I'm not sure if that a proper fix is changing the documentation. I would expect that we should address the issue to avoid getting the exception. 




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org