mirror of
https://github.com/MariaDB/server.git
synced 2026-05-04 22:25:32 +02: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:
parent
4568152518
commit
54fbbf9591
108 changed files with 786 additions and 751 deletions
|
|
@ -526,8 +526,8 @@ static bool write_execute_load_query_log_event(THD *thd,
|
|||
{
|
||||
Execute_load_query_log_event
|
||||
e(thd, thd->query, thd->query_length,
|
||||
(char*)thd->lex->fname_start - (char*)thd->query,
|
||||
(char*)thd->lex->fname_end - (char*)thd->query,
|
||||
(uint) ((char*)thd->lex->fname_start - (char*)thd->query),
|
||||
(uint) ((char*)thd->lex->fname_end - (char*)thd->query),
|
||||
(duplicates == DUP_REPLACE) ? LOAD_DUP_REPLACE :
|
||||
(ignore ? LOAD_DUP_IGNORE : LOAD_DUP_ERROR),
|
||||
transactional_table, FALSE, killed_err_arg);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue