Skip to content

Commit

Permalink
MDEV-15373 post-push: fixing type mismatch alerted by windows build.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrelkin committed May 18, 2018
1 parent 685961a commit a620985
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sql/rpl_rli.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1780,7 +1780,8 @@ gtid_pos_auto_create_tables(rpl_slave_state::gtid_pos_table **list_ptr)
p= strmake(p, plugin_name(*auto_engines)->str, FN_REFLEN - (p - buf));
table_name.str= buf;
table_name.length= p - buf;
table_case_convert(const_cast<char*>(table_name.str), table_name.length);
table_case_convert(const_cast<char*>(table_name.str),
static_cast<uint>(table_name.length));
entry= rpl_global_gtid_slave_state->alloc_gtid_pos_table
(&table_name, hton, rpl_slave_state::GTID_POS_AUTO_CREATE);
if (!entry)
Expand Down

0 comments on commit a620985

Please sign in to comment.