1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Bug #16502: mysqlcheck gets confused with views

Make mysqlcheck skip over views when processing all of the tables in a
  database.
This commit is contained in:
jimw@rama.(none)
2006-07-24 13:31:20 -07:00
parent b7a55b9b5c
commit 8489a8db07
3 changed files with 33 additions and 4 deletions

View File

@@ -32,3 +32,10 @@ mysql.time_zone_name OK
mysql.time_zone_transition OK
mysql.time_zone_transition_type OK
mysql.user OK
create table t1 (a int);
create view v1 as select * from t1;
test.t1 OK
test.t1 OK
drop view v1;
drop table t1;
End of 5.0 tests