This is an automated email from the ASF dual-hosted git repository.
HTHou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iotdb-docs.git
The following commit(s) were added to refs/heads/main by this push:
new 5a2e85ec Fix continuous query maximum example descriptions (#1215)
5a2e85ec is described below
commit 5a2e85ec866fb8cb5b08b5a1e11ec18706d16f50
Author: leto-bbq <[email protected]>
AuthorDate: Mon Sep 7 17:24:00 2026 +0800
Fix continuous query maximum example descriptions (#1215)
---
src/UserGuide/Master/Tree/User-Manual/Database-Programming.md | 2 +-
src/UserGuide/V1.3.x/User-Manual/Database-Programming.md | 2 +-
src/UserGuide/dev-1.3/User-Manual/Database-Programming.md | 2 +-
src/UserGuide/latest/User-Manual/Database-Programming.md | 2 +-
src/zh/UserGuide/Master/Tree/User-Manual/Database-Programming.md | 2 +-
src/zh/UserGuide/V1.3.x/User-Manual/Database-Programming.md | 2 +-
src/zh/UserGuide/dev-1.3/User-Manual/Database-Programming.md | 2 +-
src/zh/UserGuide/latest/User-Manual/Database-Programming.md | 2 +-
8 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/src/UserGuide/Master/Tree/User-Manual/Database-Programming.md
b/src/UserGuide/Master/Tree/User-Manual/Database-Programming.md
index ce625e46..4254173c 100644
--- a/src/UserGuide/Master/Tree/User-Manual/Database-Programming.md
+++ b/src/UserGuide/Master/Tree/User-Manual/Database-Programming.md
@@ -136,7 +136,7 @@ SELECT max_value(temperature)
END
```
-`cq1` calculates the 10-second average of `temperature` sensor under the
`root.ln` prefix path and stores the results in the `temperature_max` sensor
using the same prefix path as the corresponding sensor.
+`cq1` calculates the 10-second maximum of `temperature` sensor under the
`root.ln` prefix path and stores the results in the `temperature_max` sensor
using the same prefix path as the corresponding sensor.
`cq1` executes at 20-second intervals, the same interval as the `EVERY`
interval. Every 20 seconds, `cq1` runs a single query that covers the time
range for the current time bucket, that is, the 20-second time bucket that
intersects with `now()`.
diff --git a/src/UserGuide/V1.3.x/User-Manual/Database-Programming.md
b/src/UserGuide/V1.3.x/User-Manual/Database-Programming.md
index e3aa73d6..577fce24 100644
--- a/src/UserGuide/V1.3.x/User-Manual/Database-Programming.md
+++ b/src/UserGuide/V1.3.x/User-Manual/Database-Programming.md
@@ -136,7 +136,7 @@ SELECT max_value(temperature)
END
```
-`cq1` calculates the 10-second average of `temperature` sensor under the
`root.ln` prefix path and stores the results in the `temperature_max` sensor
using the same prefix path as the corresponding sensor.
+`cq1` calculates the 10-second maximum of `temperature` sensor under the
`root.ln` prefix path and stores the results in the `temperature_max` sensor
using the same prefix path as the corresponding sensor.
`cq1` executes at 20-second intervals, the same interval as the `EVERY`
interval. Every 20 seconds, `cq1` runs a single query that covers the time
range for the current time bucket, that is, the 20-second time bucket that
intersects with `now()`.
diff --git a/src/UserGuide/dev-1.3/User-Manual/Database-Programming.md
b/src/UserGuide/dev-1.3/User-Manual/Database-Programming.md
index e3aa73d6..577fce24 100644
--- a/src/UserGuide/dev-1.3/User-Manual/Database-Programming.md
+++ b/src/UserGuide/dev-1.3/User-Manual/Database-Programming.md
@@ -136,7 +136,7 @@ SELECT max_value(temperature)
END
```
-`cq1` calculates the 10-second average of `temperature` sensor under the
`root.ln` prefix path and stores the results in the `temperature_max` sensor
using the same prefix path as the corresponding sensor.
+`cq1` calculates the 10-second maximum of `temperature` sensor under the
`root.ln` prefix path and stores the results in the `temperature_max` sensor
using the same prefix path as the corresponding sensor.
`cq1` executes at 20-second intervals, the same interval as the `EVERY`
interval. Every 20 seconds, `cq1` runs a single query that covers the time
range for the current time bucket, that is, the 20-second time bucket that
intersects with `now()`.
diff --git a/src/UserGuide/latest/User-Manual/Database-Programming.md
b/src/UserGuide/latest/User-Manual/Database-Programming.md
index ce625e46..4254173c 100644
--- a/src/UserGuide/latest/User-Manual/Database-Programming.md
+++ b/src/UserGuide/latest/User-Manual/Database-Programming.md
@@ -136,7 +136,7 @@ SELECT max_value(temperature)
END
```
-`cq1` calculates the 10-second average of `temperature` sensor under the
`root.ln` prefix path and stores the results in the `temperature_max` sensor
using the same prefix path as the corresponding sensor.
+`cq1` calculates the 10-second maximum of `temperature` sensor under the
`root.ln` prefix path and stores the results in the `temperature_max` sensor
using the same prefix path as the corresponding sensor.
`cq1` executes at 20-second intervals, the same interval as the `EVERY`
interval. Every 20 seconds, `cq1` runs a single query that covers the time
range for the current time bucket, that is, the 20-second time bucket that
intersects with `now()`.
diff --git a/src/zh/UserGuide/Master/Tree/User-Manual/Database-Programming.md
b/src/zh/UserGuide/Master/Tree/User-Manual/Database-Programming.md
index 40053b34..fb138cd3 100644
--- a/src/zh/UserGuide/Master/Tree/User-Manual/Database-Programming.md
+++ b/src/zh/UserGuide/Master/Tree/User-Manual/Database-Programming.md
@@ -132,7 +132,7 @@ BEGIN
END
```
-`cq1`计算出`temperature`传感器每10秒的平均值,并且将查询结果存储在`temperature_max`传感器下,传感器路径前缀使用跟原来一样的前缀。
+`cq1`计算出`temperature`传感器每10秒的最大值,并且将查询结果存储在`temperature_max`传感器下,传感器路径前缀使用跟原来一样的前缀。
`cq1`每20秒执行一次,每次执行的查询的时间窗口范围是从过去20秒到当前时间。
diff --git a/src/zh/UserGuide/V1.3.x/User-Manual/Database-Programming.md
b/src/zh/UserGuide/V1.3.x/User-Manual/Database-Programming.md
index 6181854d..bf3daaa1 100644
--- a/src/zh/UserGuide/V1.3.x/User-Manual/Database-Programming.md
+++ b/src/zh/UserGuide/V1.3.x/User-Manual/Database-Programming.md
@@ -132,7 +132,7 @@ BEGIN
END
```
-`cq1`计算出`temperature`传感器每10秒的平均值,并且将查询结果存储在`temperature_max`传感器下,传感器路径前缀使用跟原来一样的前缀。
+`cq1`计算出`temperature`传感器每10秒的最大值,并且将查询结果存储在`temperature_max`传感器下,传感器路径前缀使用跟原来一样的前缀。
`cq1`每20秒执行一次,每次执行的查询的时间窗口范围是从过去20秒到当前时间。
diff --git a/src/zh/UserGuide/dev-1.3/User-Manual/Database-Programming.md
b/src/zh/UserGuide/dev-1.3/User-Manual/Database-Programming.md
index 6181854d..bf3daaa1 100644
--- a/src/zh/UserGuide/dev-1.3/User-Manual/Database-Programming.md
+++ b/src/zh/UserGuide/dev-1.3/User-Manual/Database-Programming.md
@@ -132,7 +132,7 @@ BEGIN
END
```
-`cq1`计算出`temperature`传感器每10秒的平均值,并且将查询结果存储在`temperature_max`传感器下,传感器路径前缀使用跟原来一样的前缀。
+`cq1`计算出`temperature`传感器每10秒的最大值,并且将查询结果存储在`temperature_max`传感器下,传感器路径前缀使用跟原来一样的前缀。
`cq1`每20秒执行一次,每次执行的查询的时间窗口范围是从过去20秒到当前时间。
diff --git a/src/zh/UserGuide/latest/User-Manual/Database-Programming.md
b/src/zh/UserGuide/latest/User-Manual/Database-Programming.md
index 40053b34..fb138cd3 100644
--- a/src/zh/UserGuide/latest/User-Manual/Database-Programming.md
+++ b/src/zh/UserGuide/latest/User-Manual/Database-Programming.md
@@ -132,7 +132,7 @@ BEGIN
END
```
-`cq1`计算出`temperature`传感器每10秒的平均值,并且将查询结果存储在`temperature_max`传感器下,传感器路径前缀使用跟原来一样的前缀。
+`cq1`计算出`temperature`传感器每10秒的最大值,并且将查询结果存储在`temperature_max`传感器下,传感器路径前缀使用跟原来一样的前缀。
`cq1`每20秒执行一次,每次执行的查询的时间窗口范围是从过去20秒到当前时间。