mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Fix of the small merge bug.
This commit is contained in:
@@ -2823,7 +2823,8 @@ int my_message_sql(uint error, const char *str, myf MyFlags)
|
||||
if (error == 0)
|
||||
{
|
||||
/* At least, prevent new abuse ... */
|
||||
DBUG_ASSERT(strncmp(str, "MyISAM table", 12) == 0);
|
||||
DBUG_ASSERT(strncmp(str, "MyISAM table", 12) == 0 ||
|
||||
strncmp(str, "MARIA table", 11) == 0);
|
||||
error= ER_UNKNOWN_ERROR;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user