1
DROP TABLE IF EXISTS t1, `t``1`, `t 1`;
2
drop view if exists v1;
3
drop database if exists client_test_db;
9
note : The storage engine for the table doesn't support optimize
10
mysql.help_category OK
12
mysql.help_relation OK
15
mysql.ndb_binlog_index OK
16
mysql.online_backup OK
17
mysql.online_backup_progress OK
23
note : The storage engine for the table doesn't support optimize
26
mysql.time_zone_leap_second OK
27
mysql.time_zone_name OK
28
mysql.time_zone_transition OK
29
mysql.time_zone_transition_type OK
36
note : The storage engine for the table doesn't support optimize
37
mysql.help_category OK
39
mysql.help_relation OK
42
mysql.ndb_binlog_index OK
43
mysql.online_backup OK
44
mysql.online_backup_progress OK
50
note : The storage engine for the table doesn't support optimize
53
mysql.time_zone_leap_second OK
54
mysql.time_zone_name OK
55
mysql.time_zone_transition OK
56
mysql.time_zone_transition_type OK
58
create table t1 (a int);
59
create view v1 as select * from t1;
64
create table `t``1`(a int);
65
create table `t 1`(a int);
68
drop table `t``1`, `t 1`;
69
create database d_bug25347;
71
create table t_bug25347 (a int);
72
create view v_bug25347 as select * from t_bug25347;
73
insert into t_bug25347 values (1),(2),(3);
77
Error : Incorrect file format 't_bug25347'
79
insert into t_bug25347 values (4),(5),(6);
80
ERROR HY000: Incorrect file format 't_bug25347'
82
warning : Number of rows changed from 0 to 3
84
insert into t_bug25347 values (7),(8),(9);
85
select * from t_bug25347;
93
select * from v_bug25347;
101
drop view v_bug25347;
102
drop table t_bug25347;
103
drop database d_bug25347;
106
create table t1(a int);
107
create view v1 as select * from t1;