Bug #121229 Outdated help contents
Submitted: 4 Sep 8:21
Reporter: Daniël van Eeden (OCA) Email Updates:
Status: Open Impact on me:
None 
Category:MySQL Server: General Severity:S3 (Non-critical)
Version:26.7 OS:Any
Assigned to: CPU Architecture:Any
Tags: Help, help content

[4 Sep 8:21] Daniël van Eeden
Description:
In MySQL 26.7 the HELP statement returns information for MySQL 9.1 instead of 26.7.

How to repeat:
mysql-26.7.1 [(none)]> select version();
+-----------+
| version() |
+-----------+
| 26.7.1    |
+-----------+
1 row in set (0.001 sec)

mysql-26.7.1 [(none)]> help HELP_DATE
Name: 'HELP_DATE'
Description:
This help information was generated from the MySQL 9.1 Reference Manual
on: 2024-09-13

mysql-26.7.1 [(none)]> help 'HELP STATEMENT'
Name: 'HELP STATEMENT'
Description:
Syntax:
HELP 'search_string'

The HELP statement returns online information from the MySQL Reference
Manual. Its proper operation requires that the help tables in the mysql
database be initialized with help topic information (see
https://dev.mysql.com/doc/refman/9.1/en/server-side-help-support.html).

The HELP statement searches the help tables for the given search string
and displays the result of the search. The search string is not
case-sensitive.

The search string can contain the wildcard characters % and _. These
have the same meaning as for pattern-matching operations performed with
the LIKE operator. For example, HELP 'rep%' returns a list of topics
that begin with rep.

The HELP statement does not require a terminator such as ; or \G.

URL: https://dev.mysql.com/doc/refman/9.1/en/help.html

mysql-26.7.1 [(none)]> 

Suggested fix:
Update the help information.