Bug #34876 | Invalid Default value is assigned to a number of variables | ||
---|---|---|---|
Submitted: | 27 Feb 2008 10:39 | Modified: | 23 Apr 2008 20:38 |
Reporter: | Salman Rawala | Email Updates: | |
Status: | Closed | Impact on me: | |
Category: | MySQL Server: Documentation | Severity: | S3 (Non-critical) |
Version: | 5.1.22 | OS: | Any |
Assigned to: | Paul DuBois | CPU Architecture: | Any |
Tags: | default value |
[27 Feb 2008 10:39]
Salman Rawala
[27 Feb 2008 10:41]
Salman Rawala
Check default values from following location http://dev.mysql.com/doc/refman/5.1/en/dynamic-system-variables.html
[27 Feb 2008 11:21]
Valeriy Kravchuk
I believe default depends on OS used. What OS are you working in?
[11 Mar 2008 6:56]
Salman Rawala
I am using Windows XP
[18 Mar 2008 1:58]
MySQL Verification Team
Thank you for the bug report. Verified on Linux. [miguel@mira dbs]$ 5.1/bin/mysql -uroot Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 Server version: 5.1.24-rc-debug Source distribution Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> show variables like "tmp_table_size"; +----------------+----------+ | Variable_name | Value | +----------------+----------+ | tmp_table_size | 16777216 | +----------------+----------+ 1 row in set (0.01 sec) mysql> SET @@global.tmp_table_size = DEFAULT; Query OK, 0 rows affected (0.00 sec) mysql> show variables like "tmp_table_size"; +----------------+----------+ | Variable_name | Value | +----------------+----------+ | tmp_table_size | 16777216 | +----------------+----------+ 1 row in set (0.01 sec) mysql>
[23 Apr 2008 20:38]
Paul DuBois
Thank you for your bug report. This issue has been addressed in the documentation. The updated documentation will appear on our website shortly, and will be included in the next release of the relevant products. Corrections made: tmp_table_size: system dependent, I have marked it that way key_buffer_size: default is 8MB max_relay_log_size: default is 0 log_output: default is FILE max_insert_delayed_threads: default is 20 For the others, I cannot repeat the assertion in the bug report that setting them to DEFAULT results in an incorrect value.