From: Date: August 22 2008 7:20am Subject: bzr commit into mysql-5.1 branch (bar:2683) Bug#31455 List-Archive: http://lists.mysql.com/commits/52281 X-Bug: 31455 Message-Id: <200808220520.m7M5KLks015125@bar.myoffice.izhnet.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit #At file:///home/bar/mysql-bzr/mysql-5.1-rpl-testfixes/ 2683 Alexander Barkov 2008-08-22 Additional fix for bug#31455. Exchanging "m_cols" and "m_cols_ai". Very confusing variable naming :( modified: sql/log_event.cc === modified file 'sql/log_event.cc' --- a/sql/log_event.cc 2008-08-21 11:47:23 +0000 +++ b/sql/log_event.cc 2008-08-22 05:17:52 +0000 @@ -1862,7 +1862,7 @@ void Rows_log_event::print_verbose(IO_CA map->get_db_name(), map->get_table_name()); /* Print the first image */ if (!(length= print_verbose_one_row(file, td, print_event_info, - &m_cols_ai, value, + &m_cols, value, (const uchar*) sql_clause1))) goto end; value+= length; @@ -1871,7 +1871,7 @@ void Rows_log_event::print_verbose(IO_CA if (sql_clause2) { if (!(length= print_verbose_one_row(file, td, print_event_info, - &m_cols, value, + &m_cols_ai, value, (const uchar*) sql_clause2))) goto end; value+= length;