Bug #42287 | max_binlog_cache_size has differing initial, DEFAULT, and max values | ||
---|---|---|---|
Submitted: | 23 Jan 2009 0:52 | Modified: | 24 Feb 2009 0:34 |
Reporter: | Patrick Crews | Email Updates: | |
Status: | Closed | Impact on me: | |
Category: | MySQL Server: Options | Severity: | S3 (Non-critical) |
Version: | OS: | Any | |
Assigned to: | Tatiana Azundris Nuernberg | CPU Architecture: | Any |
Tags: | default values, max_binlog_cache_size, variables |
[23 Jan 2009 0:52]
Patrick Crews
[23 Jan 2009 0:52]
Patrick Crews
.result file
Attachment: exp.result (, text), 804 bytes.
[23 Jan 2009 0:53]
Patrick Crews
.test file to demonstrate bug
Attachment: exp.test (, text), 656 bytes.
[23 Jan 2009 0:54]
Patrick Crews
This is likely a symptom of Bug #31177 Server variables can't be set to their current values However, the manual still needs to be updated to reflect the new values (server and manual disagree in -bugteam)
[26 Jan 2009 13:55]
Tatiana Azundris Nuernberg
(note: attached test-case has a typo, tries to set to 4294967295 but then expects 42946_7295, this makes the result look really off rather than just adjusted, which it is) presumed fallout from Bug#31177, and therefore correct in -bugteam to wit: 64-bit > SELECT @@global.max_binlog_cache_size as initial_max_binlog_cache; 18446744073709547520 > SET @@global.max_binlog_cache_size = default; > SELECT @@global.max_binlog_cache_size; 18446744073709547520 > SET @@global.max_binlog_cache_size=4294967295; 4294963200 > SET @@global.max_binlog_cache_size=4294963200; > SELECT @@global.max_binlog_cache_size; 4294963200 32-bit > SELECT @@global.max_binlog_cache_size as initial_max_binlog_cache; 4294963200 > SET @@global.max_binlog_cache_size = default; 4294963200 > SET @@global.max_binlog_cache_size=4294967295; > SELECT @@global.max_binlog_cache_size 4294963200 > SET @@global.max_binlog_cache_size=4294963200; > SELECT @@global.max_binlog_cache_size; 4294963200
[24 Feb 2009 0:34]
Paul DuBois
Manual has been updated to indicate default, max values on 32-bit and 64-bit systems.