mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Bug#29125 Windows Server X64: so many compiler warnings
- Remove bothersome warning messages. This change focuses on the warnings that are covered by the ignore file: support-files/compiler_warnings.supp. - Strings are guaranteed to be max uint in length
This commit is contained in:
@ -527,8 +527,8 @@ Event_parse_data::init_definer(THD *thd)
|
||||
|
||||
const char *definer_user= thd->lex->definer->user.str;
|
||||
const char *definer_host= thd->lex->definer->host.str;
|
||||
int definer_user_len= thd->lex->definer->user.length;
|
||||
int definer_host_len= thd->lex->definer->host.length;
|
||||
size_t definer_user_len= thd->lex->definer->user.length;
|
||||
size_t definer_host_len= thd->lex->definer->host.length;
|
||||
|
||||
DBUG_PRINT("info",("init definer_user thd->mem_root: 0x%lx "
|
||||
"definer_user: 0x%lx", (long) thd->mem_root,
|
||||
|
Reference in New Issue
Block a user