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:
@ -182,7 +182,7 @@ void udf_init()
|
||||
DBUG_PRINT("info",("init udf record"));
|
||||
LEX_STRING name;
|
||||
name.str=get_field(&mem, table->field[0]);
|
||||
name.length = strlen(name.str);
|
||||
name.length = (uint) strlen(name.str);
|
||||
char *dl_name= get_field(&mem, table->field[2]);
|
||||
bool new_dl=0;
|
||||
Item_udftype udftype=UDFTYPE_FUNCTION;
|
||||
|
Reference in New Issue
Block a user