1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Additional fix for bug#31455.

Exchanging "m_cols" and "m_cols_ai".

Very confusing variable naming :(
This commit is contained in:
Alexander Barkov
2008-08-22 10:17:52 +05:00
parent 531c320611
commit 1f61af5ad1

View File

@@ -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;