Skip to content

Commit 458592b

Browse files
authored
Fix wording to reflect poor performance of initial query before optimization (#20534)
1 parent f617492 commit 458592b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

explain-walkthrough.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ EXPLAIN ANALYZE SELECT count(*) FROM trips WHERE start_date BETWEEN '2017-07-01
6767
5 rows in set (1.03 sec)
6868
```
6969

70-
执行以上示例查询耗时 `1.03` 秒,说明执行性能较为理想
70+
执行以上示例查询耗时 `1.03` 秒,说明执行性能不太理想
7171

7272
以上 `EXPLAIN ANALYZE` 的结果中,`actRows` 表明一些 `estRows` 预估数不准确(预估返回 10000 行数据但实际返回 19117643 行)。`└─TableFullScan_18` 算子的 `operator info` 列 (`stats:pseudo`) 信息也表明该算子的预估数不准确。
7373

0 commit comments

Comments
 (0)