mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
Bug#50478 perfschema.tampered_perfschema_table1 fails sporadically on
Windows and Solaris Reviewed every call to my_error() using the va_args parameters, to make sure the arguments type are ok. Fixed the broken calls to my_error() to pass a strings as 'char *', not LEX_STRING.
This commit is contained in:
parent
7610c9eba5
commit
f62eb05d08
1 changed files with 2 additions and 2 deletions
|
@ -219,7 +219,7 @@ int PFS_engine_table::read_row(TABLE *table,
|
|||
if (! m_share_ptr->m_checked)
|
||||
{
|
||||
my_error(ER_WRONG_NATIVE_TABLE_STRUCTURE, MYF(0),
|
||||
PERFORMANCE_SCHEMA_str.str, m_share_ptr->m_name);
|
||||
PERFORMANCE_SCHEMA_str.str, m_share_ptr->m_name.str);
|
||||
return HA_ERR_TABLE_NEEDS_UPGRADE;
|
||||
}
|
||||
|
||||
|
@ -256,7 +256,7 @@ int PFS_engine_table::update_row(TABLE *table,
|
|||
if (! m_share_ptr->m_checked)
|
||||
{
|
||||
my_error(ER_WRONG_NATIVE_TABLE_STRUCTURE, MYF(0),
|
||||
PERFORMANCE_SCHEMA_str.str, m_share_ptr->m_name);
|
||||
PERFORMANCE_SCHEMA_str.str, m_share_ptr->m_name.str);
|
||||
return HA_ERR_TABLE_NEEDS_UPGRADE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue