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

Fix for bug#14476 information_schema.TABLES.TABLE_TYPE with empty value

store TABLES.TABLE_TYPE in case of error during table opening
This commit is contained in:
gluh@eagle.intranet.mysql.r18.ru
2005-12-01 11:00:33 +04:00
parent 085e7784b0
commit 1faac904f5
3 changed files with 24 additions and 0 deletions

View File

@ -2315,6 +2315,12 @@ static int get_schema_tables_record(THD *thd, struct st_table_list *tables,
there was errors during opening tables
*/
const char *error= thd->net.last_error;
if (tables->view)
table->field[3]->store(STRING_WITH_LEN("VIEW"), cs);
else if (tables->schema_table)
table->field[3]->store(STRING_WITH_LEN("SYSTEM VIEW"), cs);
else
table->field[3]->store(STRING_WITH_LEN("BASE TABLE"), cs);
table->field[20]->store(error, strlen(error), cs);
thd->clear_error();
}