From d56ae7b38aa1727ecc8464c94d298b58896b0969 Mon Sep 17 00:00:00 2001 From: Ruihang Xia Date: Fri, 17 May 2024 23:01:32 +0800 Subject: [PATCH] fix typo Signed-off-by: Ruihang Xia --- .../nightly/en/user-guide/continuous-aggregation/manage-flow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/nightly/en/user-guide/continuous-aggregation/manage-flow.md b/docs/nightly/en/user-guide/continuous-aggregation/manage-flow.md index ead2e65b3..eb0134c9d 100644 --- a/docs/nightly/en/user-guide/continuous-aggregation/manage-flow.md +++ b/docs/nightly/en/user-guide/continuous-aggregation/manage-flow.md @@ -27,7 +27,7 @@ When `OR REPLACE` is specified, if a flow with the same name already exists, it `sink-table-name` is the table name to store the materialized aggregated data. It can be an existing table or a new table, `flow` will create the sink table if it doesn't exist. But if the table already exists, the schema of the table must match the schema of the query result. -`expire after` is an optional inverval to expire the data from the source table. The expiration time is a relative time from the current time (by "current time" we means the physical time of the data arrive the Flow engine). For example, `INTERVAL '1 hour'` means the data after 1 hour from the current time will be expired. Expired will be dropped directly. +`expire after` is an optional interval to expire the data from the source table. The expiration time is a relative time from the current time (by "current time" we means the physical time of the data arrive the Flow engine). For example, `INTERVAL '1 hour'` means the data after 1 hour from the current time will be expired. Expired will be dropped directly. `SQL` part defines the continuous aggregation query. Refer to [Query](./query.md) for the details. Generally speaking, the `SQL` part is just like a normal `SELECT` clause with a few difference.