Bug #65801 An comment mistype of mysql_rename_tables
Submitted: 4 Jul 2012 2:10 Modified: 4 Jul 2012 14:53
Reporter: xiaobin lin (OCA) Email Updates:
Status: Can't repeat Impact on me:
None 
Category:MySQL Server: DDL Severity:S3 (Non-critical)
Version:5.5.26 OS:Any
Assigned to: Jon Olav Hauglid CPU Architecture:Any
Tags: comment, mysql_rename_tables

[4 Jul 2012 2:10] xiaobin lin
Description:
/*
  Every second entry in the table_list is the original name and every
  second entry is the new name.
*/

Is the first "second" should be "first"?

How to repeat:
as above

Suggested fix:
as above
[4 Jul 2012 7:04] Valeriy Kravchuk
Thank you for the problem report. Verified by code review of current mysql-5.5 tree (sql/sql_rename.cc)
[4 Jul 2012 12:58] Jon Olav Hauglid
Hello!

This has already been fixed in 5.6 (WL#4445). It now reads:

/*
  Every two entries in the table_list form a pair of original name and
  the new name.
*/
[4 Jul 2012 14:53] xiaobin lin
Thank you, Jon . Good news :)