mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
MDEV-15373 post-push: fixing type mismatch alerted by windows build.
This commit is contained in:
parent
685961a085
commit
a620985f8f
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue