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

[iotdb] branch master updated: Fix typo in user guide (#8127)

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

hui 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 3b2bd8198d Fix typo in user guide (#8127)
3b2bd8198d is described below

commit 3b2bd8198d2fe1989aa79eb07c1b1d677cd521ac
Author: liuminghui233 <36...@users.noreply.github.com>
AuthorDate: Thu Nov 24 15:19:18 2022 +0800

    Fix typo in user guide (#8127)
---
 docs/zh/UserGuide/Query-Data/Overview.md | 9 ++++++---
 site/src/main/.vuepress/config.js        | 2 +-
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/docs/zh/UserGuide/Query-Data/Overview.md b/docs/zh/UserGuide/Query-Data/Overview.md
index 81f6ad2694..4941cf0394 100644
--- a/docs/zh/UserGuide/Query-Data/Overview.md
+++ b/docs/zh/UserGuide/Query-Data/Overview.md
@@ -87,10 +87,13 @@ SELECT [LAST] selectExpr [, selectExpr] ...
 
 ### `ORDER BY` 子句
 
-- `ORDER BY` 子句用户指定结果集的排序方式。
+- `ORDER BY` 子句用于指定结果集的排序方式。
 - 按时间对齐模式下:默认按照时间戳大小升序排列,可以通过 `ORDER BY TIME DESC` 指定结果集按照时间戳大小降序排列。
-- 按设备对齐模式下:默认按照设备名的字典序升序排列,每个设备内部按照时间戳大小升序排列,可以通过 `ORDER BY` 子句调整设备列和时间列的排序优先级。
-- 详细说明及示例见文档 [结果集排序](./Order-By.md) 。
+- 按设备对齐模式下:先按照设备排列,每个设备内部按照时间戳大小升序排列,暂不支持使用 `ORDER BY` 子句。
+
+[comment]: <> (- 按设备对齐模式下:默认按照设备名的字典序升序排列,每个设备内部按照时间戳大小升序排列,可以通过 `ORDER BY` 子句调整设备列和时间列的排序优先级。)
+
+[comment]: <> (- 详细说明及示例见文档 [结果集排序]&#40;./Order-By.md&#41; 。)
 
 ### `FILL` 子句
 
diff --git a/site/src/main/.vuepress/config.js b/site/src/main/.vuepress/config.js
index 5135dc716e..2b5320ac4d 100644
--- a/site/src/main/.vuepress/config.js
+++ b/site/src/main/.vuepress/config.js
@@ -1882,7 +1882,7 @@ var config = {
 							['Query-Data/Where-Condition','查询过滤条件'],
 							['Query-Data/Group-By','分段分组聚合'],
 							['Query-Data/Having-Condition','聚合结果过滤'],
-							['Query-Data/Order-By','结果集排序'],
+							// ['Query-Data/Order-By','结果集排序'],
 							['Query-Data/Fill','结果集补空值'],
 							['Query-Data/Pagination','结果集分页'],
 							['Query-Data/Select-Into','查询写回'],