You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by lt...@apache.org on 2019/05/31 07:41:28 UTC

[incubator-iotdb] 01/01: fix mistakes in doc

This is an automated email from the ASF dual-hosted git repository.

lta pushed a commit to branch fix_jira108
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git

commit bb9f09530283ebaae2c9bcd16834bef150368b7c
Author: lta <li...@163.com>
AuthorDate: Fri May 31 15:38:47 2019 +0800

    fix mistakes in doc
---
 docs/Documentation/UserGuideV0.7.0/5-SQL Documentation.md | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/docs/Documentation/UserGuideV0.7.0/5-SQL Documentation.md b/docs/Documentation/UserGuideV0.7.0/5-SQL Documentation.md
index 6188c3f..fb0c853 100644
--- a/docs/Documentation/UserGuideV0.7.0/5-SQL Documentation.md	
+++ b/docs/Documentation/UserGuideV0.7.0/5-SQL Documentation.md	
@@ -486,10 +486,9 @@ Note: the statement needs to satisfy this constraint: <PrefixPath> + <Path> = <T
 
 * MIN_VALUE
 
-The MIN_VALUE function returns the minimum value(lexicographically ordered) of the the choosen timeseries (oen or more). 
+The MIN_VALUE function returns the minimum value(lexicographically ordered) of the the choosen timeseries (one or more). 
 
 ```
-MIN_VALUE函数返回的是该列按字典序排序的最小值。
 SELECT MIN_VALUE (Path) (COMMA MIN_VALUE (Path))* FROM <FromClause> [WHERE <WhereClause>]?
 Eg. SELECT MIN_VALUE(status),MIN_VALUE(temperature) FROM root.ln.wf01.wt01 WHERE root.ln.wf01.wt01.temperature < 24
 Note: the statement needs to satisfy this constraint: <PrefixPath> + <Path> = <Timeseries>