Commit dd29ae7c authored by Alexander Barkov's avatar Alexander Barkov

Additional fix for bug#31455.

Exchanging "m_cols" and "m_cols_ai".

Very confusing variable naming :(
parent d220fb66
......@@ -1862,7 +1862,7 @@ void Rows_log_event::print_verbose(IO_CACHE *file,
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_CACHE *file,
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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment