2007-10-30 09:51:57 +01:00
|
|
|
DROP TABLE IF EXISTS t1, `t``1`, `t 1`;
|
2006-12-14 23:51:37 +01:00
|
|
|
drop view if exists v1;
|
|
|
|
drop database if exists client_test_db;
|
2005-10-18 11:25:03 +02:00
|
|
|
mysql.columns_priv OK
|
|
|
|
mysql.db OK
|
|
|
|
mysql.func OK
|
|
|
|
mysql.help_category OK
|
|
|
|
mysql.help_keyword OK
|
|
|
|
mysql.help_relation OK
|
|
|
|
mysql.help_topic OK
|
|
|
|
mysql.host OK
|
|
|
|
mysql.proc OK
|
|
|
|
mysql.procs_priv OK
|
|
|
|
mysql.tables_priv OK
|
|
|
|
mysql.time_zone OK
|
|
|
|
mysql.time_zone_leap_second OK
|
|
|
|
mysql.time_zone_name OK
|
|
|
|
mysql.time_zone_transition OK
|
|
|
|
mysql.time_zone_transition_type OK
|
|
|
|
mysql.user OK
|
|
|
|
mysql.columns_priv OK
|
|
|
|
mysql.db OK
|
|
|
|
mysql.func OK
|
|
|
|
mysql.help_category OK
|
|
|
|
mysql.help_keyword OK
|
|
|
|
mysql.help_relation OK
|
|
|
|
mysql.help_topic OK
|
|
|
|
mysql.host OK
|
|
|
|
mysql.proc OK
|
|
|
|
mysql.procs_priv OK
|
|
|
|
mysql.tables_priv OK
|
|
|
|
mysql.time_zone OK
|
|
|
|
mysql.time_zone_leap_second OK
|
|
|
|
mysql.time_zone_name OK
|
|
|
|
mysql.time_zone_transition OK
|
|
|
|
mysql.time_zone_transition_type OK
|
|
|
|
mysql.user OK
|
2006-07-24 22:31:20 +02:00
|
|
|
create table t1 (a int);
|
|
|
|
create view v1 as select * from t1;
|
|
|
|
test.t1 OK
|
|
|
|
test.t1 OK
|
|
|
|
drop view v1;
|
|
|
|
drop table t1;
|
2007-10-30 09:51:57 +01:00
|
|
|
create table `t``1`(a int);
|
|
|
|
create table `t 1`(a int);
|
|
|
|
test.t 1 OK
|
|
|
|
test.t`1 OK
|
|
|
|
drop table `t``1`, `t 1`;
|
2008-01-23 17:37:46 +01:00
|
|
|
create database d_bug25347;
|
|
|
|
use d_bug25347;
|
|
|
|
create table t_bug25347 (a int);
|
|
|
|
create view v_bug25347 as select * from t_bug25347;
|
2008-01-27 22:28:50 +01:00
|
|
|
flush tables;
|
2008-01-23 17:37:46 +01:00
|
|
|
removing and creating
|
|
|
|
d_bug25347.t_bug25347 OK
|
|
|
|
drop view v_bug25347;
|
|
|
|
drop table t_bug25347;
|
|
|
|
drop database d_bug25347;
|
|
|
|
use test;
|
2008-11-13 14:06:48 +01:00
|
|
|
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;
|
2008-11-14 08:40:46 +01:00
|
|
|
CREATE TABLE t1(a INT);
|
|
|
|
CREATE TABLE t2(a INT);
|
|
|
|
test.t1
|
|
|
|
Error : Incorrect information in file: './test/t1.frm'
|
|
|
|
error : Corrupt
|
|
|
|
test.t2 OK
|
|
|
|
DROP TABLE t1, t2;
|
2006-07-24 22:31:20 +02:00
|
|
|
End of 5.0 tests
|