|
|
|
@ -98,6 +98,12 @@ drop view v_bug25347; |
|
|
|
drop table t_bug25347; |
|
|
|
drop database d_bug25347; |
|
|
|
use test; |
|
|
|
create view v1 as select * from information_schema.routines; |
|
|
|
check table v1, information_schema.routines; |
|
|
|
Table Op Msg_type Msg_text |
|
|
|
test.v1 check status OK |
|
|
|
information_schema.routines check note The storage engine for the table doesn't support check |
|
|
|
drop view v1; |
|
|
|
End of 5.0 tests |
|
|
|
create table t1(a int); |
|
|
|
create view v1 as select * from t1; |
|
|
|
|