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:05:59 UTC

[iotdb] 01/01: fix typo

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

hui pushed a commit to branch lmh/FixDocTypo
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit c55e295693abc7f3e3b8abd422745f5a43a9962e
Author: liuminghui233 <54...@qq.com>
AuthorDate: Thu Nov 24 15:05:20 2022 +0800

    fix typo
---
 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 21b79a95d7..e3ddd45dbc 100644
--- a/site/src/main/.vuepress/config.js
+++ b/site/src/main/.vuepress/config.js
@@ -1883,7 +1883,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','查询写回'],