From d54c3c73136da5aef9ee85e7a62ad195a7f1ab57 Mon Sep 17 00:00:00 2001 From: Upkar Lidder <155678012+upkarliddercflt@users.noreply.github.com> Date: Mon, 6 May 2024 14:12:35 -0700 Subject: [PATCH] Clarifying docs The usage of the word "instead" is confusing to the reader. It seems to suggest the sentence before is untrue. --- docs/content/docs/dev/table/sql/queries/group-agg.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/docs/dev/table/sql/queries/group-agg.md b/docs/content/docs/dev/table/sql/queries/group-agg.md index 60e9c614b29fe..300c4ece8847d 100644 --- a/docs/content/docs/dev/table/sql/queries/group-agg.md +++ b/docs/content/docs/dev/table/sql/queries/group-agg.md @@ -33,7 +33,7 @@ An aggregate function computes a single result from multiple input rows. For exa SELECT COUNT(*) FROM Orders ``` -For streaming queries, it is important to understand that Flink runs continuous queries that never terminate. Instead, they update their result table according to the updates on its input tables. For the above query, Flink will output an updated count each time a new row is inserted into the `Orders` table. +For streaming queries, it is important to understand that Flink runs continuous queries that never terminate. These queries constantly update their result tables in response to modifications in their input tables. For the above query, Flink will output an updated count each time a new row is inserted into the `Orders` table. Apache Flink supports the standard `GROUP BY` clause for aggregating data.