Commit bb7ae40a authored by unknown's avatar unknown

Fix of the small merge bug.

parent 3c1e153a
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment