Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

system variables: revise description about tidb_opt_prefer_range_scan #7076

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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