You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2022/01/19 01:41:11 UTC

[iotdb] 01/01: [IOTDB-2427] Fix document of deleting non-existing time series values

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

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

commit 35253cba171bcc9a08708b2604b6417c4e279ea7
Author: HTHou <hh...@outlook.com>
AuthorDate: Wed Jan 19 09:40:21 2022 +0800

    [IOTDB-2427] Fix document of deleting non-existing time series values
---
 docs/UserGuide/Write-And-Delete-Data/Delete-Data.md    | 2 +-
 docs/zh/UserGuide/Write-And-Delete-Data/Delete-Data.md | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/UserGuide/Write-And-Delete-Data/Delete-Data.md b/docs/UserGuide/Write-And-Delete-Data/Delete-Data.md
index 8a125d4..6aaf2b4 100644
--- a/docs/UserGuide/Write-And-Delete-Data/Delete-Data.md
+++ b/docs/UserGuide/Write-And-Delete-Data/Delete-Data.md
@@ -80,7 +80,7 @@ delete from root.ln.wf02.wt02.* where time <= 2017-11-01T16:26:00;
 It should be noted that when the deleted path does not exist, IoTDB will not prompt that the path does not exist, but that the execution is successful, because SQL is a declarative programming method. Unless it is a syntax error, insufficient permissions and so on, it is not considered an error, as shown below:
 ```
 IoTDB> delete from root.ln.wf03.wt02.status where time < now()
-Msg: TimeSeries does not exist and its data cannot be deleted
+Msg: The statement is executed successfully.
 ```
 
 ### Delete Time Partition (experimental)
diff --git a/docs/zh/UserGuide/Write-And-Delete-Data/Delete-Data.md b/docs/zh/UserGuide/Write-And-Delete-Data/Delete-Data.md
index dbd295f..3549b6a 100644
--- a/docs/zh/UserGuide/Write-And-Delete-Data/Delete-Data.md
+++ b/docs/zh/UserGuide/Write-And-Delete-Data/Delete-Data.md
@@ -76,7 +76,7 @@ delete from root.ln.wf02.wt02.* where time <= 2017-11-01T16:26:00;
 
 ```sql
 IoTDB> delete from root.ln.wf03.wt02.status where time < now()
-Msg: TimeSeries does not exist and its data cannot be deleted
+Msg: The statement is executed successfully.
 ```
 
 ### 删除时间分区 (实验性功能)