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: update the default value of tidb_enable_inl_join_inner_multi_pattern #18706

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
5 changes: 3 additions & 2 deletions system-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -2177,8 +2177,9 @@ mysql> SELECT job_info FROM mysql.analyze_jobs ORDER BY end_time DESC LIMIT 1;
- 是否持久化到集群:是
- 是否受 Hint [SET_VAR](/optimizer-hints.md#set_varvar_namevar_value) 控制:是
- 类型:布尔型
- 默认值:`OFF`
- 该变量用于控制当内表上有 `Selection`/`Projection` 算子时是否支持 Index Join。`OFF` 表示不支持。
- 默认值:在 v8.4.0 之前版本中为 `OFF`,即默认关闭。在 v8.4.0 及之后的版本中为 `ON`,即默认开启。
- 该变量用于控制当内表上有 `Selection`/`Projection`/`Aggregation` 算子时是否支持 Index Join。`OFF` 表示不支持。
- 如果从 v7.0.0 之前版本的集群升级至 v8.4.0 及之后的版本,该变量默认值会为 `OFF`,默认不开启。

### `tidb_enable_ordered_result_mode`

Expand Down