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

jackietien pushed a commit to branch rel/1.0
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/rel/1.0 by this push:
     new bfe11ed3a0 modify doc of KillQuery & ShowQueries as not supported
bfe11ed3a0 is described below

commit bfe11ed3a068c7abe9e7cf244b8ebc03043fcab9
Author: Weihao Li <[email protected]>
AuthorDate: Wed Jan 11 16:03:19 2023 +0800

    modify doc of KillQuery & ShowQueries as not supported
---
 docs/UserGuide/Maintenance-Tools/Maintenance-Command.md | 16 +---------------
 .../Operators-Functions/User-Defined-Function.md        |  2 +-
 .../UserGuide/Maintenance-Tools/Maintenance-Command.md  | 17 +----------------
 3 files changed, 3 insertions(+), 32 deletions(-)

diff --git a/docs/UserGuide/Maintenance-Tools/Maintenance-Command.md 
b/docs/UserGuide/Maintenance-Tools/Maintenance-Command.md
index 7b6f80f73d..7eaa4abb13 100644
--- a/docs/UserGuide/Maintenance-Tools/Maintenance-Command.md
+++ b/docs/UserGuide/Maintenance-Tools/Maintenance-Command.md
@@ -93,19 +93,5 @@ session.executeQueryStatement(String sql, long timeout)
 
 ### Query abort
 
-In addition to waiting for the query to time out passively, IoTDB also 
supports stopping the query actively:
-
-```sql
-KILL QUERY <queryId>
-```
-
-You can abort the specified query by specifying `queryId`. If `queryId` is not 
specified, all executing queries will be killed.
-
-To get the executing `queryId`,you can use the `show query processlist` 
command,which will show the list of all executing queries,with the following 
result set:
-
-| Time | queryId | statement |
-|------|---------|-----------|
-|      |         |           |
-
-The maximum display length of statement is 64 characters. For statements with 
more than 64 characters, the intercepted part will be displayed.
+Not supported yet
 
diff --git a/docs/UserGuide/Operators-Functions/User-Defined-Function.md 
b/docs/UserGuide/Operators-Functions/User-Defined-Function.md
index 235a32be9c..a5c49cef34 100644
--- a/docs/UserGuide/Operators-Functions/User-Defined-Function.md
+++ b/docs/UserGuide/Operators-Functions/User-Defined-Function.md
@@ -413,7 +413,7 @@ The process of registering a UDF in IoTDB is as follows:
 CREATE FUNCTION <UDF-NAME> AS <UDF-CLASS-FULL-PATHNAME> (USING URI URI-STRING)?
 ```
 
-#### Example: register UDF named `example`, you can choose either of the 
following two registration methods
+### Example: register UDF named `example`, you can choose either of the 
following two registration methods
 
 #### No URI
 
diff --git a/docs/zh/UserGuide/Maintenance-Tools/Maintenance-Command.md 
b/docs/zh/UserGuide/Maintenance-Tools/Maintenance-Command.md
index 3f89cb2839..579a387fde 100644
--- a/docs/zh/UserGuide/Maintenance-Tools/Maintenance-Command.md
+++ b/docs/zh/UserGuide/Maintenance-Tools/Maintenance-Command.md
@@ -91,19 +91,4 @@ session.executeQueryStatement(String sql, long timeout)
 
 ### 查询终止
 
-除了被动地等待查询超时外,IoTDB 还支持主动地终止查询,命令为:
-
-```sql
-KILL QUERY <queryId>
-```
-
-通过指定 `queryId` 可以中止指定的查询,而如果不指定 `queryId`,将中止所有正在执行的查询。
-
-为了获取正在执行的查询 id,用户可以使用 `show query processlist` 命令,该命令将显示所有正在执行的查询列表,结果形式如下:
-
-| Time | queryId | statement |
-|------|---------|-----------|
-|      |         |           |
-
-其中 statement 最大显示长度为 64 字符。对于超过 64 字符的查询语句,将截取部分进行显示。
-
+尚未支持

Reply via email to