Skip to content

Commit

Permalink
Clarifying docs
Browse files Browse the repository at this point in the history
The usage of the word "instead" is confusing to the reader. It seems to suggest the sentence before is untrue.
  • Loading branch information
upkarliddercflt committed May 6, 2024
1 parent fa426f1 commit d54c3c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/content/docs/dev/table/sql/queries/group-agg.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit d54c3c7

Please sign in to comment.