mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Fixed wrong arguments to printf and related functions
Other things, mainly to get create_mysqld_error_find_printf_error tool to work: - Added protection to not include mysqld_error.h twice - Include "unireg.h" instead of "mysqld_error.h" in server - Added protection if ER_XX messages are already defined - Removed wrong calls to my_error(ER_OUTOFMEMORY) as my_malloc() and my_alloc will do this automatically - Added missing %s to ER_DUP_QUERY_NAME - Removed old and wrong calls to my_strerror() when using MY_ERROR_ON_RENAME (wrong merge) - Fixed deadlock error message from Galera. Before the extra information given to ER_LOCK_DEADLOCK was missing because ER_LOCK_DEADLOCK doesn't provide any extra information. I kept #ifdef mysqld_error_find_printf_error_used in sql_acl.h to make it easy to do this kind of check again in the future
This commit is contained in:
@ -9948,7 +9948,7 @@ bool Column_definition::check(THD *thd)
|
||||
if (decimals >= NOT_FIXED_DEC)
|
||||
{
|
||||
my_error(ER_TOO_BIG_SCALE, MYF(0), static_cast<ulonglong>(decimals),
|
||||
field_name, static_cast<ulong>(NOT_FIXED_DEC - 1));
|
||||
field_name, static_cast<uint>(NOT_FIXED_DEC - 1));
|
||||
DBUG_RETURN(TRUE);
|
||||
}
|
||||
my_decimal_trim(&length, &decimals);
|
||||
@ -10006,7 +10006,7 @@ bool Column_definition::check(THD *thd)
|
||||
if (decimals != NOT_FIXED_DEC && decimals >= FLOATING_POINT_DECIMALS)
|
||||
{
|
||||
my_error(ER_TOO_BIG_SCALE, MYF(0), static_cast<ulonglong>(decimals),
|
||||
field_name, static_cast<ulong>(FLOATING_POINT_DECIMALS-1));
|
||||
field_name, static_cast<uint>(FLOATING_POINT_DECIMALS-1));
|
||||
DBUG_RETURN(TRUE);
|
||||
}
|
||||
break;
|
||||
@ -10026,7 +10026,7 @@ bool Column_definition::check(THD *thd)
|
||||
if (decimals != NOT_FIXED_DEC && decimals >= FLOATING_POINT_DECIMALS)
|
||||
{
|
||||
my_error(ER_TOO_BIG_SCALE, MYF(0), static_cast<ulonglong>(decimals),
|
||||
field_name, static_cast<ulong>(FLOATING_POINT_DECIMALS-1));
|
||||
field_name, static_cast<uint>(FLOATING_POINT_DECIMALS-1));
|
||||
DBUG_RETURN(TRUE);
|
||||
}
|
||||
break;
|
||||
|
Reference in New Issue
Block a user