1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Fix for bug#5501 (SHOW TABLE STATUS should show "view" in upper case)

mysql-test/r/information_schema.result:
  changed output "view" to uppercase
mysql-test/r/view.result:
  changed output "view" to uppercase
sql/sql_show.cc:
  changed table field "view" to uppercase
This commit is contained in:
unknown
2005-08-24 12:51:00 +02:00
parent 43e07c3b91
commit a57d244458
3 changed files with 8 additions and 8 deletions

View File

@ -2210,7 +2210,7 @@ static int get_schema_tables_record(THD *thd, struct st_table_list *tables,
else if (tables->view)
{
table->field[3]->store("VIEW", 4, cs);
table->field[20]->store("view", 4, cs);
table->field[20]->store("VIEW", 4, cs);
}
else
{