Skip to content

Commit

Permalink
Fix a merge error in MDEV-12179 code in process_gtid_pos_table
Browse files Browse the repository at this point in the history
  • Loading branch information
spetrunia committed Jan 29, 2018
1 parent 28d4124 commit 0bbd299
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sql/rpl_rli.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1719,12 +1719,12 @@ process_gtid_pos_table(THD *thd, LEX_CSTRING *table_name, void *hton,
if (!is_default)
{
/* Ignore the redundant table. */
sql_print_warning(warning_msg, table_name->str, entry->table_name);
sql_print_warning(warning_msg, table_name->str, entry->table_name.str);
return 0;
}
else
{
sql_print_warning(warning_msg, entry->table_name, table_name->str);
sql_print_warning(warning_msg, entry->table_name.str, table_name->str);
/* Delete the redundant table, and proceed to add this one instead. */
*next_ptr= entry->next;
my_free(entry);
Expand Down

0 comments on commit 0bbd299

Please sign in to comment.