Bug #42073 Docs: Wrong default value of falcon_record_memory_max option
Submitted: 13 Jan 2009 8:20 Modified: 13 Jan 2009 12:35
Reporter: John Embretsen Email Updates:
Status: Closed Impact on me:
None 
Category:MySQL Server: Documentation Severity:S3 (Non-critical)
Version:6.0 OS:Any
Assigned to: CPU Architecture:Any

[13 Jan 2009 8:20] John Embretsen
Description:
In the MySQL 6.0 manual section 13.7.2 at http://dev.mysql.com/doc/refman/6.0/en/se-falcon-configuration.html#option_mysqld_falcon_r... the specified default value of the option falcon_record_memory_max is "20" (probably meaning 20 MB). In reality, the default value is 262144000, which is 250 MB (see Bug#41870).

How to repeat:
Compare

http://dev.mysql.com/doc/refman/6.0/en/se-falcon-configuration.html#option_mysqld_falcon_r...

to 

mysql> SHOW VARIABLES LIKE '%falcon_record_memory_max%';
+--------------------------+-----------+
| Variable_name            | Value     |
+--------------------------+-----------+
| falcon_record_memory_max | 262144000 |
+--------------------------+-----------+
1 row in set (0.00 sec)

Suggested fix:
Update the default value in the docs to reflect the real default.
[13 Jan 2009 8:47] Sveta Smirnova
Thank you for the report.

Verified as described.
[13 Jan 2009 12:35] MC Brown
The documentation has been updated.