1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fix for Bug #8897 Test ndb_autodiscover: Spurious warning in --ps-protocol on NDB

This commit is contained in:
marty@linux.site
2005-03-09 14:29:22 +01:00
parent ca336ad1de
commit e6d7c9fc5d
3 changed files with 7 additions and 4 deletions

View File

@ -1606,7 +1606,8 @@ static int open_unireg_entry(THD *thd, TABLE *entry, const char *db,
if (ha_create_table_from_engine(thd, db, name, TRUE) != 0)
goto err;
thd->clear_error(); // Clear error message
mysql_reset_errors(thd, true); // Clear warnings
thd->clear_error(); // Clear error message
continue;
}