Skip to content

Commit

Permalink
system variables: revise description about tidb_opt_prefer_range_scan
Browse files Browse the repository at this point in the history
  • Loading branch information
en-jin19 committed Sep 6, 2021
1 parent b5e7456 commit 540c945
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -1130,7 +1130,7 @@ mysql> desc select count(distinct a) from test.t;

- 作用域:SESSION | GLOBAL
- 默认值:`OFF`
- 将该变量值设为 `1` 后,优化器总是偏好区间扫描而不是全表扫描。
- 将该变量值设为 `ON` 后,优化器总是偏好区间扫描而不是全表扫描。
- 在以下示例中,`tidb_opt_prefer_range_scan` 开启前,TiDB 优化器需要执行全表扫描。`tidb_opt_prefer_range_scan` 开启后,优化器选择了索引区间扫描。

```sql
Expand Down

0 comments on commit 540c945

Please sign in to comment.