Bug #45292 | orphan binary log created when starting server twice | ||
---|---|---|---|
Submitted: | 3 Jun 2009 9:58 | Modified: | 15 Mar 2010 4:43 |
Reporter: | Joffrey MICHAIE | Email Updates: | |
Status: | Closed | Impact on me: | |
Category: | MySQL Server: Replication | Severity: | S2 (Serious) |
Version: | mysql-5.1-telco-7.0 | OS: | Any |
Assigned to: | Alfranio Tavares Correia Junior | CPU Architecture: | Any |
Tags: | 5.1.30-ndb-6.3.20, 5.1.34-ndb-7.0, binary log, orphan, phantom, replication |
[3 Jun 2009 9:58]
Joffrey MICHAIE
[6 Jun 2009 21:55]
Sveta Smirnova
Thank you for the report. Verified as described: 1. Start mysqld with option indicated (could not repeat without --log-slave-updates=1 --sync-binlog=1 --expire-logs-days=10) 2. Create table, insert 3. Start another mysqld 4. Wait when it dies 5. ls datadir - see new log 6. Issue status queries - no new log 7. Purge master logs to lates log from status command 8. Issue status queries - see new log Sometimes, but not always, I could not restart mysqld after tests due to "Failed to open log (file '', errno 2)" error
[8 Jul 2009 16:38]
Alfranio Tavares Correia Junior
There are three different issues described in this bug report: 1 - The original client's issue what is not reproduced here but may be explained as follows: Due to the failure in the Cluster the server is being aborted while purging the logs: (purge routine - sql/log.cc - MYSQL_BIN_LOG::purge_logs) 1 - copy the content of the log-bin.index to a temporary buffer. 2 - update the log-bin.index. 3 - flush the log-bin.index. 4 - erase the files whose names where copied to the temporary buffer in step 1. Most likely, the server is being aborted while executing step 4 thus generating an orphan file. This is a known issue with a simple fix. In other words, we just need to augment the initialization routine to automatically erase any orphan file. 2 - Two servers being started on the same data directory. The second server is able to create a binary log and update the index file although it fails to start up. ----------------------------------------------------------- InnoDB: Error in opening ./ibdata1 090708 15:42:38 InnoDB: Operating system error number 11 in a file operation. InnoDB: Error number 11 means 'Resource temporarily unavailable'. InnoDB: Some operating system error numbers are described at InnoDB: http://dev.mysql.com/doc/refman/5.1/en/operating-system-error-codes.html InnoDB: Could not open or create data files. InnoDB: If you tried to add new data files, and it failed here, InnoDB: you should now edit innodb_data_file_path in my.cnf back InnoDB: to what it was, and remove the new ibdata files InnoDB created InnoDB: in this failed attempt. InnoDB only wrote those files full of InnoDB: zeros, but did not yet use them in any way. But be careful: do not InnoDB: remove old data files which contain your precious data! 090708 15:42:38 [ERROR] Plugin 'InnoDB' init function returned error. 090708 15:42:38 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed. 090708 15:42:38 [ERROR] Can't start server: Bind on TCP/IP port: Address already in use 090708 15:42:38 [ERROR] Do you already have another mysqld server running on port: 3306 ? 090708 15:42:38 [ERROR] Aborting ----------------------------------------------------------- The server should never be able to create a new binary log and modify the binary log index file in such situation. 3 - The purge operation is allowing to remove an used file: the descriptor of the current binary log is kept although the physical file is removed from the file system. There is a problem with the sql_repl.cc:bool log_in_use(const char* log_name), which is not correctly checking if a file is in use thus causing purge to happen in MYSQL_BIN_LOG::purge_logs.
[8 Jul 2009 16:41]
Alfranio Tavares Correia Junior
In this bug report, we are going to address item 1 and 3. You are going to discuss with the replication team how you should address item 2 and file a new bug report in due time. Cheers.
[12 Jul 2009 23:25]
Bugs System
A patch for this bug has been committed. After review, it may be pushed to the relevant source trees for release in the next version. You can access the patch from: http://lists.mysql.com/commits/78483 3013 Alfranio Correia 2009-07-13 BUG#45292 orphan binary log created when starting server twice This patch fixes two bugs as follows. First, aborting the server while purging binary logs might generate orphan files due to how the purge operation was implemented: (purge routine - sql/log.cc - MYSQL_BIN_LOG::purge_logs) 1 - register the files to be removed in a temporary buffer. 2 - update the log-bin.index. 3 - flush the log-bin.index. 4 - erase the files whose names where register in the temporary buffer in step 1. Thus aborting a server while executing step 4 would generate an orphan file. To fix this issue, we record the files to be purged before removing them from the index file and from the file system. So if a failure happens such registers can be used to automatically remove dangling files. The new steps might be outlined as follows: (purge routine - sql/log.cc - MYSQL_BIN_LOG::purge_logs) 1 - register the files to be removed in a the log-bin.purge place in the data directory. 2 - update the log-bin.index. 3 - flush the log-bin.index. 4 - erase the files whose names where register in the log-bin.purge in step 1. (purge routine - sql/log.cc - MYSQL_BIN_LOG::open_index_file) 1 - open the log-bin.index. 2 - open the log-bin.purge. 3 - for each file in log-bin.purge 3.1 Check if file is in log-bin.index and if so ignored it. 3.2 Otherwise, delete it. Regarding the second issue. The purge operation was allowing to remove a file in use thus leading to the loss of data and possible inconsistencies between the master and slave. Roughly, there was a problem with the sql_repl.cc::bool log_in_use(), which was not correctly checking if a file was in use. To avoid this issue, we replaced the call to such function by a call to the method MYSQL_BIN_LOG::is_active() and remove the previous function as it was obsolete.
[19 Jul 2009 14:23]
Bugs System
A patch for this bug has been committed. After review, it may be pushed to the relevant source trees for release in the next version. You can access the patch from: http://lists.mysql.com/commits/78980 3013 Alfranio Correia 2009-07-19 BUG#45292 orphan binary log created when starting server twice This patch fixes three bugs as follows. First, aborting the server while purging binary logs might generate orphan files due to how the purge operation was implemented: (purge routine - sql/log.cc - MYSQL_BIN_LOG::purge_logs) 1 - register the files to be removed in a temporary buffer. 2 - update the log-bin.index. 3 - flush the log-bin.index. 4 - erase the files whose names where register in the temporary buffer in step 1. Thus a failure while executing step 4 would generate an orphan file. Second, a similar issue might happen while creating a new binary as follows: (open routine - sql/log.cc - MYSQL_BIN_LOG::open) 1 - open the new log-bin. 2 - update the log-bin.index. Thus a failure while executing step 1 would generate an orphan file. To fix these issues, we record the files to be purged or created before really removing or adding them. So if a failure happens such registers can be used to automatically remove dangling files. The new steps might be outlined as follows: (purge routine - sql/log.cc - MYSQL_BIN_LOG::purge_logs) 1 - register the files to be removed in the log-bin.log placed in the data directory. 2 - update the log-bin.index. 3 - flush the log-bin.index. (open routine - sql/log.cc - MYSQL_BIN_LOG::open) 1 - register the file to be created in the log-bin.log placed in the data directory. 2 - open the new log-bin. 3 - update the log-bin.index. (purge routine - sql/log.cc - MYSQL_BIN_LOG::open_index_file) 1 - open the log-bin.index. 2 - open the log-bin.log. 3 - for each file in log-bin.log 3.1 Check if the file is in the log-bin.index and if so ignore it. 3.2 Otherwise, delete it. The third issue can be described as follows. The purge operation was allowing to remove a file in use thus leading to the loss of data and possible inconsistencies between the master and slave. Roughly, the routine was only taking into account the dump threads and so if a slave was not connect the file might be delete even though it was in use.
[24 Jul 2009 10:44]
Lars Thalmann
It is assumed that this *only* happens when either: 1. the slave has crashed at some point, or 2. the slave is started with the same datadir as some other server. It does *not* happen during normal shutdown/start. (If this is not correct, and someone has discovered this problem in other circumstances, please let us know.)
[10 Aug 2009 18:07]
Alfranio Tavares Correia Junior
Update on comment "[8 Jul 18:38] Alfranio Correia" There are three different issues described in this bug report: 1 - The original client's issue what is not reproduced here but may be explained as follows: First, aborting the server while purging binary logs might generate orphan files due to how the purge operation was implemented: (purge routine - sql/log.cc - MYSQL_BIN_LOG::purge_logs) 1 - register the files to be removed in a temporary buffer. 2 - update the log-bin.index. 3 - flush the log-bin.index. 4 - erase the files whose names where register in the temporary buffer in step 1. Thus a failure while executing step 4 would generate an orphan file. Second, a similar issue might happen while creating a new binary as follows: (open routine - sql/log.cc - MYSQL_BIN_LOG::open) 1 - open the new log-bin. 2 - update the log-bin.index. Thus a failure while executing step 1 would generate an orphan file. 2 - Two servers being started on the same data directory. The second server is able to create a binary log and update the index file although it fails to start up. ----------------------------------------------------------- InnoDB: Error in opening ./ibdata1 090708 15:42:38 InnoDB: Operating system error number 11 in a file operation. InnoDB: Error number 11 means 'Resource temporarily unavailable'. InnoDB: Some operating system error numbers are described at InnoDB: http://dev.mysql.com/doc/refman/5.1/en/operating-system-error-codes.html InnoDB: Could not open or create data files. InnoDB: If you tried to add new data files, and it failed here, InnoDB: you should now edit innodb_data_file_path in my.cnf back InnoDB: to what it was, and remove the new ibdata files InnoDB created InnoDB: in this failed attempt. InnoDB only wrote those files full of InnoDB: zeros, but did not yet use them in any way. But be careful: do not InnoDB: remove old data files which contain your precious data! 090708 15:42:38 [ERROR] Plugin 'InnoDB' init function returned error. 090708 15:42:38 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed. 090708 15:42:38 [ERROR] Can't start server: Bind on TCP/IP port: Address already in use 090708 15:42:38 [ERROR] Do you already have another mysqld server running on port: 3306 ? 090708 15:42:38 [ERROR] Aborting ----------------------------------------------------------- The server should never be able to create a new binary log and modify the binary log index file in such situation. And apparently the cluster is not gracefully finishing the server and it should. 3 - The purge operation is allowing to remove a file that is in use: the descriptor of the current binary log is kept although the physical file is removed from the file system. The sql_repl.cc:bool log_in_use(const char* log_name) only checks if a binary log is in use by a slave. It does not take into account that there may not be slaves and that the file may be in use by the master.
[6 Sep 2009 23:43]
Bugs System
A patch for this bug has been committed. After review, it may be pushed to the relevant source trees for release in the next version. You can access the patch from: http://lists.mysql.com/commits/82536 3102 Alfranio Correia 2009-09-07 BUG#45292 orphan binary log created when starting server twice This patch fixes three bugs as follows. First, aborting the server while purging binary logs might generate orphan files due to how the purge operation was implemented: (purge routine - sql/log.cc - MYSQL_BIN_LOG::purge_logs) 1 - register the files to be removed in a temporary buffer. 2 - update the log-bin.index. 3 - flush the log-bin.index. 4 - erase the files whose names where register in the temporary buffer in step 1. Thus a failure while executing step 4 would generate an orphan file. Second, a similar issue might happen while creating a new binary as follows: (open routine - sql/log.cc - MYSQL_BIN_LOG::open) 1 - open the new log-bin. 2 - update the log-bin.index. 3 - flush the log-bin.index. Thus a failure while executing step 1 would generate an orphan file. To fix these issues, we use the index file as a log and introduce a recovery procedure as follows: (purge routine - sql/log.cc - MYSQL_BIN_LOG::purge_logs) 1 - erase the files. 2 - update the log-bin.index. 3 - flush the log-bin.index. (open routine - sql/log.cc - MYSQL_BIN_LOG::open) 1 - update the log-bin.index if new log-bin entry is not an entry. 2 - flush the log-bin.index. 3 - open the new log-bin. (purge routine - sql/log.cc - MYSQL_BIN_LOG::open_index_file) 1 - open the log-bin.index. 2 - for each file in log-bin.index 2.1 check if the file exists. 2.2 if it does not exist and is not a new log-bin, remove the entry. 3 - for a new log-bin: 3.1 - if the file is corrupted, remove it. 3.2 - otherwise, do nothing. The third issue can be described as follows. The purge operation was allowing to remove a file in use thus leading to the loss of data and possible inconsistencies between the master and slave. Roughly, the routine was only taking into account the dump threads and so if a slave was not connect the file might be delete even though it was in use.
[23 Nov 2009 3:10]
Bugs System
A patch for this bug has been committed. After review, it may be pushed to the relevant source trees for release in the next version. You can access the patch from: http://lists.mysql.com/commits/91246 3215 Alfranio Correia 2009-11-23 BUG#45292 orphan binary log created when starting server twice This patch fixes three bugs as follows. First, aborting the server while purging binary logs might generate orphan files due to how the purge operation was implemented: (purge routine - sql/log.cc - MYSQL_BIN_LOG::purge_logs) 1 - register the files to be removed in a temporary buffer. 2 - update the log-bin.index. 3 - flush the log-bin.index. 4 - erase the files whose names where register in the temporary buffer in step 1. Thus a failure while executing step 4 would generate an orphan file. Second, a similar issue might happen while creating a new binary as follows: (open routine - sql/log.cc - MYSQL_BIN_LOG::open) 1 - open the new log-bin. 2 - update the log-bin.index. Thus a failure while executing step 1 would generate an orphan file. To fix these issues, we record the files to be purged or created before really removing or adding them. So if a failure happens such registers can be used to automatically remove dangling files. The new steps might be outlined as follows: (purge routine - sql/log.cc - MYSQL_BIN_LOG::purge_logs) 1 - register the files to be removed in the log-bin.log placed in the data directory. 2 - update the log-bin.index. 3 - flush the log-bin.index. (open routine - sql/log.cc - MYSQL_BIN_LOG::open) 1 - register the file to be created in the log-bin.log placed in the data directory. 2 - open the new log-bin. 3 - update the log-bin.index. (purge routine - sql/log.cc - MYSQL_BIN_LOG::open_index_file) 1 - open the log-bin.index. 2 - open the log-bin.log. 3 - for each file in log-bin.log 3.1 Check if the file is in the log-bin.index and if so ignore it. 3.2 Otherwise, delete it. The third issue can be described as follows. The purge operation was allowing to remove a file in use thus leading to the loss of data and possible inconsistencies between the master and slave. Roughly, the routine was only taking into account the dump threads and so if a slave was not connect the file might be delete even though it was in use.
[30 Nov 2009 17:58]
Bugs System
A patch for this bug has been committed. After review, it may be pushed to the relevant source trees for release in the next version. You can access the patch from: http://lists.mysql.com/commits/92154 3215 Alfranio Correia 2009-11-30 BUG#45292 orphan binary log created when starting server twice This patch fixes three bugs as follows. First, aborting the server while purging binary logs might generate orphan files due to how the purge operation was implemented: (purge routine - sql/log.cc - MYSQL_BIN_LOG::purge_logs) 1 - register the files to be removed in a temporary buffer. 2 - update the log-bin.index. 3 - flush the log-bin.index. 4 - erase the files whose names where register in the temporary buffer in step 1. Thus a failure while executing step 4 would generate an orphan file. Second, a similar issue might happen while creating a new binary as follows: (create routine - sql/log.cc - MYSQL_BIN_LOG::open) 1 - open the new log-bin. 2 - update the log-bin.index. Thus a failure while executing step 1 would generate an orphan file. To fix these issues, we record the files to be purged or created before really removing or adding them. So if a failure happens such records can be used to automatically remove dangling files. The new steps might be outlined as follows: (purge routine - sql/log.cc - MYSQL_BIN_LOG::purge_logs) 1 - register the files to be removed in the log-bin.~rec~ placed in the data directory. 2 - update the log-bin.index. 3 - flush the log-bin.index. 4 - delete the log-bin.~rec~. (create routine - sql/log.cc - MYSQL_BIN_LOG::open) 1 - register the file to be created in the log-bin.~rec~ placed in the data directory. 2 - open the new log-bin. 3 - update the log-bin.index. 4 - delete the log-bin.~rec~. (recovery routine - sql/log.cc - MYSQL_BIN_LOG::open_index_file) 1 - open the log-bin.index. 2 - open the log-bin.~rec~. 3 - for each file in log-bin.~rec~. 3.1 Check if the file is in the log-bin.index and if so ignore it. 3.2 Otherwise, delete it. The third issue can be described as follows. The purge operation was allowing to remove a file in use thus leading to the loss of data and possible inconsistencies between the master and slave. Roughly, the routine was only taking into account the dump threads and so if a slave was not connect the file might be delete even though it was in use.
[3 Dec 2009 14:40]
Bugs System
A patch for this bug has been committed. After review, it may be pushed to the relevant source trees for release in the next version. You can access the patch from: http://lists.mysql.com/commits/92687 3215 Alfranio Correia 2009-12-03 BUG#45292 orphan binary log created when starting server twice This patch fixes three bugs as follows. First, aborting the server while purging binary logs might generate orphan files due to how the purge operation was implemented: (purge routine - sql/log.cc - MYSQL_BIN_LOG::purge_logs) 1 - register the files to be removed in a temporary buffer. 2 - update the log-bin.index. 3 - flush the log-bin.index. 4 - erase the files whose names where register in the temporary buffer in step 1. Thus a failure while executing step 4 would generate an orphan file. Second, a similar issue might happen while creating a new binary as follows: (create routine - sql/log.cc - MYSQL_BIN_LOG::open) 1 - open the new log-bin. 2 - update the log-bin.index. Thus a failure while executing step 1 would generate an orphan file. To fix these issues, we record the files to be purged or created before really removing or adding them. So if a failure happens such records can be used to automatically remove dangling files. The new steps might be outlined as follows: (purge routine - sql/log.cc - MYSQL_BIN_LOG::purge_logs) 1 - register the files to be removed in the log-bin.~rec~ placed in the data directory. 2 - update the log-bin.index. 3 - flush the log-bin.index. 4 - delete the log-bin.~rec~. (create routine - sql/log.cc - MYSQL_BIN_LOG::open) 1 - register the file to be created in the log-bin.~rec~ placed in the data directory. 2 - open the new log-bin. 3 - update the log-bin.index. 4 - delete the log-bin.~rec~. (recovery routine - sql/log.cc - MYSQL_BIN_LOG::open_index_file) 1 - open the log-bin.index. 2 - open the log-bin.~rec~. 3 - for each file in log-bin.~rec~. 3.1 Check if the file is in the log-bin.index and if so ignore it. 3.2 Otherwise, delete it. The third issue can be described as follows. The purge operation was allowing to remove a file in use thus leading to the loss of data and possible inconsistencies between the master and slave. Roughly, the routine was only taking into account the dump threads and so if a slave was not connect the file might be delete even though it was in use.
[4 Dec 2009 14:49]
Bugs System
A patch for this bug has been committed. After review, it may be pushed to the relevant source trees for release in the next version. You can access the patch from: http://lists.mysql.com/commits/92891 3244 Alfranio Correia 2009-12-04 BUG#45292 orphan binary log created when starting server twice This patch fixes three bugs as follows. First, aborting the server while purging binary logs might generate orphan files due to how the purge operation was implemented: (purge routine - sql/log.cc - MYSQL_BIN_LOG::purge_logs) 1 - register the files to be removed in a temporary buffer. 2 - update the log-bin.index. 3 - flush the log-bin.index. 4 - erase the files whose names where register in the temporary buffer in step 1. Thus a failure while executing step 4 would generate an orphan file. Second, a similar issue might happen while creating a new binary as follows: (create routine - sql/log.cc - MYSQL_BIN_LOG::open) 1 - open the new log-bin. 2 - update the log-bin.index. Thus a failure while executing step 1 would generate an orphan file. To fix these issues, we record the files to be purged or created before really removing or adding them. So if a failure happens such records can be used to automatically remove dangling files. The new steps might be outlined as follows: (purge routine - sql/log.cc - MYSQL_BIN_LOG::purge_logs) 1 - register the files to be removed in the log-bin.~rec~ placed in the data directory. 2 - update the log-bin.index. 3 - flush the log-bin.index. 4 - delete the log-bin.~rec~. (create routine - sql/log.cc - MYSQL_BIN_LOG::open) 1 - register the file to be created in the log-bin.~rec~ placed in the data directory. 2 - open the new log-bin. 3 - update the log-bin.index. 4 - delete the log-bin.~rec~. (recovery routine - sql/log.cc - MYSQL_BIN_LOG::open_index_file) 1 - open the log-bin.index. 2 - open the log-bin.~rec~. 3 - for each file in log-bin.~rec~. 3.1 Check if the file is in the log-bin.index and if so ignore it. 3.2 Otherwise, delete it. The third issue can be described as follows. The purge operation was allowing to remove a file in use thus leading to the loss of data and possible inconsistencies between the master and slave. Roughly, the routine was only taking into account the dump threads and so if a slave was not connect the file might be delete even though it was in use.
[4 Dec 2009 15:19]
Alfranio Tavares Correia Junior
Patch queued to 5.1-bugteam and pe.
[5 Dec 2009 22:10]
Bugs System
A patch for this bug has been committed. After review, it may be pushed to the relevant source trees for release in the next version. You can access the patch from: http://lists.mysql.com/commits/92984 3247 Alfranio Correia 2009-12-05 Post-push fix for BUG#45292.
[8 Dec 2009 13:59]
Bugs System
A patch for this bug has been committed. After review, it may be pushed to the relevant source trees for release in the next version. You can access the patch from: http://lists.mysql.com/commits/93198 3252 Alfranio Correia 2009-12-08 Post-push for BUG#45292. Disabled execution in valgrind to avoid false positive memory leaks due to fault-injection tests (i.e. call to abort()).
[8 Dec 2009 16:04]
Bugs System
A patch for this bug has been committed. After review, it may be pushed to the relevant source trees for release in the next version. You can access the patch from: http://lists.mysql.com/commits/93238 3252 Alfranio Correia 2009-12-08 Post-push fix for BUG#45292. Disabled execution in valgrind to avoid false positive memory leaks due to fault-injection tests (i.e. call to abort()).
[19 Dec 2009 8:27]
Bugs System
Pushed into 6.0.14-alpha (revid:alik@sun.com-20091219082307-f3i4fn0tm8trb3c0) (version source revid:alik@sun.com-20091216180721-eoa754i79j4ssd3m) (merge vers: 6.0.14-alpha) (pib:15)
[19 Dec 2009 8:31]
Bugs System
Pushed into 5.5.1-m2 (revid:alik@sun.com-20091219082021-f34nq4jytwamozz0) (version source revid:alexey.kopytov@sun.com-20091211164058-ycpe0f20d1c4h1gl) (merge vers: 5.5.0-beta) (pib:15)
[19 Dec 2009 8:34]
Bugs System
Pushed into mysql-next-mr (revid:alik@sun.com-20091219082213-nhjjgmphote4ntxj) (version source revid:alik@sun.com-20091216180221-a5ps59gajad3pip9) (pib:15)
[12 Jan 2010 23:02]
Jon Stephens
Documented bugfix in the 5.5.1 and 6.0.14 changelogs as follows: A flaw in the implementation of purging binary logs was implemented could result in orphan files being left behind in the following circumstances: ·If the server failed or was killed while purging binary logs. ·If the server failed or was killed after creating of a new binary log when the new log file was opened for the first time. In addition, if the slave was not connected during the purge operation, it was possible for a log file that was in use to be removed; this could lead data loss and possible inconsistencies between the master and slave. Set to NDI, waiting for push to 5.1 and telco trees.
[15 Jan 2010 9:02]
Bugs System
Pushed into 5.1.43 (revid:joro@sun.com-20100115085139-qkh0i0fpohd9u9p5) (version source revid:zhenxing.he@sun.com-20091210045610-lmebcvl2i1b4dzzl) (merge vers: 5.1.42) (pib:16)
[18 Jan 2010 14:03]
Jon Stephens
Also documented in the 5.1.43 changelog. Closed.
[12 Mar 2010 14:11]
Bugs System
Pushed into 5.1.44-ndb-7.0.14 (revid:jonas@mysql.com-20100312135944-t0z8s1da2orvl66x) (version source revid:jonas@mysql.com-20100312115609-woou0te4a6s4ae9y) (merge vers: 5.1.44-ndb-7.0.14) (pib:16)
[12 Mar 2010 14:26]
Bugs System
Pushed into 5.1.44-ndb-6.2.19 (revid:jonas@mysql.com-20100312134846-tuqhd9w3tv4xgl3d) (version source revid:jonas@mysql.com-20100312060623-mx6407w2vx76h3by) (merge vers: 5.1.44-ndb-6.2.19) (pib:16)
[12 Mar 2010 14:41]
Bugs System
Pushed into 5.1.44-ndb-6.3.33 (revid:jonas@mysql.com-20100312135724-xcw8vw2lu3mijrhn) (version source revid:jonas@mysql.com-20100312103652-snkltsd197l7q2yg) (merge vers: 5.1.44-ndb-6.3.33) (pib:16)
[15 Mar 2010 4:43]
Jon Stephens
No new changelog entries required. Closed.