We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 685961a commit a620985Copy full SHA for a620985
sql/rpl_rli.cc
@@ -1780,7 +1780,8 @@ gtid_pos_auto_create_tables(rpl_slave_state::gtid_pos_table **list_ptr)
1780
p= strmake(p, plugin_name(*auto_engines)->str, FN_REFLEN - (p - buf));
1781
table_name.str= buf;
1782
table_name.length= p - buf;
1783
- table_case_convert(const_cast<char*>(table_name.str), table_name.length);
+ table_case_convert(const_cast<char*>(table_name.str),
1784
+ static_cast<uint>(table_name.length));
1785
entry= rpl_global_gtid_slave_state->alloc_gtid_pos_table
1786
(&table_name, hton, rpl_slave_state::GTID_POS_AUTO_CREATE);
1787
if (!entry)
0 commit comments