Skip to content

Commit 0bbd299

Browse files
committed
Fix a merge error in MDEV-12179 code in process_gtid_pos_table
1 parent 28d4124 commit 0bbd299

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sql/rpl_rli.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1719,12 +1719,12 @@ process_gtid_pos_table(THD *thd, LEX_CSTRING *table_name, void *hton,
17191719
if (!is_default)
17201720
{
17211721
/* Ignore the redundant table. */
1722-
sql_print_warning(warning_msg, table_name->str, entry->table_name);
1722+
sql_print_warning(warning_msg, table_name->str, entry->table_name.str);
17231723
return 0;
17241724
}
17251725
else
17261726
{
1727-
sql_print_warning(warning_msg, entry->table_name, table_name->str);
1727+
sql_print_warning(warning_msg, entry->table_name.str, table_name->str);
17281728
/* Delete the redundant table, and proceed to add this one instead. */
17291729
*next_ptr= entry->next;
17301730
my_free(entry);

0 commit comments

Comments
 (0)