Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[hotfix] [docs] Clarifying sentence on streaming queries #24758

Open
wants to merge 1 commit into
base: release-1.19
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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