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

haonan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new 1c1ccb6  rm update in md (#1835)
1c1ccb6 is described below

commit 1c1ccb64176a12ad29c83c9cc4f38b9a1e548c74
Author: yanhong wang <[email protected]>
AuthorDate: Tue Oct 20 11:16:55 2020 +0800

    rm update in md (#1835)
---
 docs/UserGuide/Operation Manual/Administration.md    |  1 -
 docs/UserGuide/Operation Manual/SQL Reference.md     | 19 ++-----------------
 docs/zh/UserGuide/Operation Manual/Administration.md |  1 -
 docs/zh/UserGuide/Operation Manual/SQL Reference.md  | 17 +----------------
 4 files changed, 3 insertions(+), 35 deletions(-)

diff --git a/docs/UserGuide/Operation Manual/Administration.md 
b/docs/UserGuide/Operation Manual/Administration.md
index 4ec9542..979491e 100644
--- a/docs/UserGuide/Operation Manual/Administration.md 
+++ b/docs/UserGuide/Operation Manual/Administration.md 
@@ -105,7 +105,6 @@ At the same time, changes to roles are immediately 
reflected on all users who ow
 |:---|:---|
 |SET\_STORAGE\_GROUP|create timeseries; set storage groups; path dependent|
 |INSERT\_TIMESERIES|insert data; path dependent|
-|UPDATE\_TIMESERIES|update data; path dependent|
 |READ\_TIMESERIES|query data; path dependent|
 |DELETE\_TIMESERIES|delete data or timeseries; path dependent|
 |CREATE\_USER|create users; path independent|
diff --git a/docs/UserGuide/Operation Manual/SQL Reference.md 
b/docs/UserGuide/Operation Manual/SQL Reference.md
index 6f05584..08ceea0 100644
--- a/docs/UserGuide/Operation Manual/SQL Reference.md  
+++ b/docs/UserGuide/Operation Manual/SQL Reference.md  
@@ -301,20 +301,6 @@ Note: the statement needs to satisfy this constraint: 
<PrefixPath> + <Path> = <T
 Note: The order of Sensor and PointValue need one-to-one correspondence
 ```
 
-* Update Record Statement
-
-```
-UPDATE <UpdateClause> SET <SetClause> WHERE <WhereClause>
-UpdateClause: <prefixPath>
-SetClause: <SetExpression> 
-SetExpression: <Path> EQUAL <PointValue>
-WhereClause : <Condition> [(AND | OR) <Condition>]*
-Condition  : <Expression> [(AND | OR) <Expression>]*
-Expression : [NOT | !]? TIME PrecedenceEqualOperator <TimeValue>
-Eg: IoTDB > UPDATE root.ln.wf01.wt01 SET temperature = 23 WHERE time < NOW() 
and time > 2017-11-1T00:15:00+08:00
-Note: the statement needs to satisfy this constraint: <PrefixPath> + <Path> = 
<Timeseries>
-```
-
 * Delete Record Statement
 
 ```
@@ -939,8 +925,7 @@ The NOW function returns the current timestamp. This 
function can be used in the
 
 ```
 NOW()
-Eg. INSERT INTO root.ln.wf01.wt01(timestamp,status) VALUES(NOW(), false) 
-Eg. UPDATE root.ln.wf01.wt01 SET temperature = 23 WHERE time < NOW()
+Eg. INSERT INTO root.ln.wf01.wt01(timestamp,status) VALUES(NOW(), false)
 Eg. DELETE FROM root.ln.wf01.wt01.status, root.ln.wf01.wt01.temperature WHERE 
time < NOW()
 Eg. SELECT * FROM root WHERE time < NOW()
 Eg. SELECT COUNT(temperature) FROM root.ln.wf01.wt01 WHERE time < NOW()
@@ -1025,7 +1010,7 @@ TRACING OFF   // Close performance tracing
 
 ```
 Keywords for IoTDB (case insensitive):
-ADD, BY, COMPRESSOR, CREATE, DATATYPE, DELETE, DESCRIBE, DROP, ENCODING, EXIT, 
FOR, FROM, GRANT, GROUP, LABLE, LINK, INDEX, INSERT, INTO, LOAD, 
MAX_POINT_NUMBER, MERGE, METADATA, ON, ORDER, PASSWORD, PRIVILEGES, PROPERTY, 
QUIT, REVOKE, ROLE, ROOT, SCHEMA, SELECT, SET, SHOW, SNAPSHOT, STORAGE, TIME, 
TIMESERIES, TIMESTAMP, TO, UNLINK, UPDATE, USER, USING, VALUE, VALUES, WHERE, 
WITH
+ADD, BY, COMPRESSOR, CREATE, DATATYPE, DELETE, DESCRIBE, DROP, ENCODING, EXIT, 
FOR, FROM, GRANT, GROUP, LABLE, LINK, INDEX, INSERT, INTO, LOAD, 
MAX_POINT_NUMBER, MERGE, METADATA, ON, ORDER, PASSWORD, PRIVILEGES, PROPERTY, 
QUIT, REVOKE, ROLE, ROOT, SCHEMA, SELECT, SET, SHOW, SNAPSHOT, STORAGE, TIME, 
TIMESERIES, TIMESTAMP, TO, UNLINK, USER, USING, VALUE, VALUES, WHERE, WITH
 
 Keywords with special meanings (case insensitive):
 * Data Types: BOOLEAN, DOUBLE, FLOAT, INT32, INT64, TEXT 
diff --git a/docs/zh/UserGuide/Operation Manual/Administration.md 
b/docs/zh/UserGuide/Operation Manual/Administration.md
index 6e746c0..9706b1a 100644
--- a/docs/zh/UserGuide/Operation Manual/Administration.md      
+++ b/docs/zh/UserGuide/Operation Manual/Administration.md      
@@ -103,7 +103,6 @@ INSERT INTO root.ln.wf01.wt01(timestamp, status) 
values(1509465600000, true)
 |:---|:---|
 |SET\_STORAGE\_GROUP|创建时间序列。包含设置存储组的权限。路径相关|
 |INSERT\_TIMESERIES|插入数据。路径相关|
-|UPDATE\_TIMESERIES|更新数据。路径相关|
 |READ\_TIMESERIES|查询数据。路径相关|
 |DELETE\_TIMESERIES|删除数据或时间序列。路径相关|
 |CREATE\_USER|创建用户。路径无关|
diff --git a/docs/zh/UserGuide/Operation Manual/SQL Reference.md 
b/docs/zh/UserGuide/Operation Manual/SQL Reference.md
index 6d66a16..7af39a4 100644
--- a/docs/zh/UserGuide/Operation Manual/SQL Reference.md       
+++ b/docs/zh/UserGuide/Operation Manual/SQL Reference.md       
@@ -292,20 +292,6 @@ Note: the statement needs to satisfy this constraint: 
<PrefixPath> + <Path> = <T
 Note: The order of Sensor and PointValue need one-to-one correspondence
 ```
 
-* 更新记录语句
-
-```
-UPDATE <UpdateClause> SET <SetClause> WHERE <WhereClause>
-UpdateClause: <prefixPath>
-SetClause: <SetExpression> 
-SetExpression: <Path> EQUAL <PointValue>
-WhereClause : <Condition> [(AND | OR) <Condition>]*
-Condition  : <Expression> [(AND | OR) <Expression>]*
-Expression : [NOT | !]? TIME PrecedenceEqualOperator <TimeValue>
-Eg: IoTDB > UPDATE root.ln.wf01.wt01 SET temperature = 23 WHERE time < NOW() 
and time > 2017-11-1T00:15:00+08:00
-Note: the statement needs to satisfy this constraint: <PrefixPath> + <Path> = 
<Timeseries>
-```
-
 * 删除记录语句
 
 ```
@@ -911,7 +897,6 @@ Note: the statement needs to satisfy this constraint: 
<PrefixPath> + <Path> = <T
 ```
 NOW()
 Eg. INSERT INTO root.ln.wf01.wt01(timestamp,status) VALUES(NOW(), false) 
-Eg. UPDATE root.ln.wf01.wt01 SET temperature = 23 WHERE time < NOW()
 Eg. DELETE FROM root.ln.wf01.wt01.status, root.ln.wf01.wt01.temperature WHERE 
time < NOW()
 Eg. SELECT * FROM root WHERE time < NOW()
 Eg. SELECT COUNT(temperature) FROM root.ln.wf01.wt01 WHERE time < NOW()
@@ -986,7 +971,7 @@ TRACING OFF   //关闭性能追踪
 
 ```
 Keywords for IoTDB (case insensitive):
-ADD, BY, COMPRESSOR, CREATE, DATATYPE, DELETE, DESCRIBE, DROP, ENCODING, EXIT, 
FOR, FROM, GRANT, GROUP, LABLE, LINK, INDEX, INSERT, INTO, LOAD, 
MAX_POINT_NUMBER, MERGE, METADATA, ON, ORDER, PASSWORD, PRIVILEGES, PROPERTY, 
QUIT, REVOKE, ROLE, ROOT, SCHEMA, SELECT, SET, SHOW, SNAPSHOT, STORAGE, TIME, 
TIMESERIES, TIMESTAMP, TO, UNLINK, UPDATE, USER, USING, VALUE, VALUES, WHERE, 
WITH
+ADD, BY, COMPRESSOR, CREATE, DATATYPE, DELETE, DESCRIBE, DROP, ENCODING, EXIT, 
FOR, FROM, GRANT, GROUP, LABLE, LINK, INDEX, INSERT, INTO, LOAD, 
MAX_POINT_NUMBER, MERGE, METADATA, ON, ORDER, PASSWORD, PRIVILEGES, PROPERTY, 
QUIT, REVOKE, ROLE, ROOT, SCHEMA, SELECT, SET, SHOW, SNAPSHOT, STORAGE, TIME, 
TIMESERIES, TIMESTAMP, TO, UNLINK, USER, USING, VALUE, VALUES, WHERE, WITH
 
 Keywords with special meanings (case insensitive):
 * Data Types: BOOLEAN, DOUBLE, FLOAT, INT32, INT64, TEXT 

Reply via email to