| Bug #45601 | Typo in TransporterCallbackKernel::reportError() | ||
|---|---|---|---|
| Submitted: | 18 Jun 2009 23:51 | Modified: | 10 Mar 2010 9:51 |
| Reporter: | Mikiya Okuno | Email Updates: | |
| Status: | Closed | Impact on me: | |
| Category: | MySQL Cluster: Cluster (NDB) storage engine | Severity: | S3 (Non-critical) |
| Version: | mysql-5.1-telco-7.0 | OS: | Any |
| Assigned to: | Jonas Oreland | CPU Architecture: | Any |
| Tags: | 7.0.6 | ||
[5 Mar 2010 12:22]
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/102428 3131 Jonas Oreland 2010-03-05 ndb - bug#45601 - fix typo in error message
[9 Mar 2010 12:32]
Bugs System
Pushed into 5.1.41-ndb-7.0.14 (revid:jonas@mysql.com-20100309122618-bqu4zub69rlky588) (version source revid:jonas@mysql.com-20100309122618-bqu4zub69rlky588) (merge vers: 5.1.41-ndb-7.0.14) (pib:16)
[9 Mar 2010 12:40]
Jonas Oreland
pushed to 6.3.33 and 7.0.14
[10 Mar 2010 9:51]
Jon Stephens
Thank you for your bug report. This issue has been committed to our source repository of that product and will be incorporated into the next release.
If necessary, you can access the source repository and build the latest available version, including the bug fix. More information about accessing the source trees is available at
http://dev.mysql.com/doc/en/installing-source.html
(Changelog entry does not seem necessary for this, closed w/o further action.)

Description: From src/kernel/vm/TransporterCallback.cpp 234 switch (errorCode) 235 { 236 case TE_SIGNAL_LOST_SEND_BUFFER_FULL: 237 { 238 char msg[64]; 239 BaseString::snprintf(msg, sizeof(msg), "Remote note id %d.%s%s", nodeId, 240 info ? " " : "", info ? info : ""); 241 ErrorReporter::handleError(NDBD_EXIT_SIGNAL_LOST_SEND_BUFFER_FULL, 242 msg, __FILE__, NST_ErrorHandler); 243 } Should be "Remote node id" How to repeat: n/a Suggested fix: n/a