From 96bb823464769f13cd3f2c638edcc8e21b55bfcf Mon Sep 17 00:00:00 2001 From: Hongze Cheng Date: Sun, 31 Oct 2021 13:26:15 +0800 Subject: [PATCH] change --- docs/user_manual/Small_Materialized_Aggrates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user_manual/Small_Materialized_Aggrates.md b/docs/user_manual/Small_Materialized_Aggrates.md index 81a067139d..dc2d9e41ed 100644 --- a/docs/user_manual/Small_Materialized_Aggrates.md +++ b/docs/user_manual/Small_Materialized_Aggrates.md @@ -32,7 +32,7 @@ create table st (ts timestamp, a int, b int NOSMA, c double) tags (tg1 binary(10 In addition to the default block-wise SMA, users can create their own SMAs ondemand. Below is an example to create a SMA. ```SQL # create a SMA every 10 minutes with SMA of sum, max and min -create sma_indx sma_5min on st (sum(*), max(*), min(*), twa(*)) interval(10m); +create sma_indx sma_10min on st (sum(*), max(*), min(*), twa(*)) interval(10m); ``` Users can also drop a time-range-wise SMA like below: ```SQL -- GitLab