Unreasonable Content in 6.5.10 Release Note

Note:
This topic has been translated from a Chinese forum by GPT and might contain errors.

Original topic: 6.5.10 releaseNote 不合理的内容

| username: MrSylar

Documentation Error: Please provide feedback according to the template below

| username: ShawnYan | Original post link

This parameter affects major versions 7.5 and 8.1, and indeed should not affect 6.5.

| username: h5n1 | Original post link

The default value of tidb_enable_clustered_index is INT_ONLY in version 5.0.0.

| username: Billmay表妹 | Original post link

From the release dates, version 7.5.0 is earlier than 6.5.10. It seems that the documentation should mention that the feature was introduced starting from version v6.5.x…

| username: ShawnYan | Original post link

@MrSylar The documentation is very detailed, thumbs up :+1:

This parameter was introduced in 7.5 and is not available in 6.5.10.

MySQL [(none)]> select tidb_version()\G
*************************** 1. row ***************************
tidb_version(): Release Version: v6.5.10
Edition: Community
Git Commit Hash: ff2feb6653846b0decd8b1d7cc0a665e128ccf26
Git Branch: heads/refs/tags/v6.5.10
UTC Build Time: 2024-06-18 15:07:37
GoVersion: go1.19.13
Race Enabled: false
TiKV Min Version: 6.2.0-alpha
Check Table Before Drop: false
Store: tikv
1 row in set (0.001 sec)

MySQL [(none)]> select @@tidb_enable_async_merge_global_stats;
ERROR 1193 (HY000): Unknown system variable 'tidb_enable_async_merge_global_stats'
MySQL [(none)]>
MySQL [(none)]> select tidb_version()\G
*************************** 1. row ***************************
tidb_version(): Release Version: v7.5.0
Edition: Community
Git Commit Hash: 069631e2ecfedc000ffb92c67207bea81380f020
Git Branch: heads/refs/tags/v7.5.0
UTC Build Time: 2023-11-24 08:50:14
GoVersion: go1.21.3
Race Enabled: false
Check Table Before Drop: false
Store: tikv
1 row in set (0.029 sec)

MySQL [(none)]> select @@tidb_enable_async_merge_global_stats;
+----------------------------------------+
| @@tidb_enable_async_merge_global_stats |
+----------------------------------------+
|                                      1 |
+----------------------------------------+
1 row in set (0.003 sec)

So the RN for 6.5.10 has some issues.

| username: hawkingrei | Original post link

Disabling tidb_enable_async_merge_global_stats is the default merge global status method in versions 7.1 and 6.5.

| username: ShawnYan | Original post link

@hawkingrei

However, version 6.5 does not have this parameter. Writing it like this in the release notes can easily confuse users.

| username: TiDBer_7S8XqKfl-1158 | Original post link

The documentation is very detailed, thumbs up!

| username: Billmay表妹 | Original post link

The related modification PR can be seen.

| username: ShawnYan | Original post link

@MrSylar The documentation for version 6.5 has been updated.