1
DROP TABLE IF EXISTS t1, `t``1`, `t 1`;
2
drop database if exists client_test_db;
4
note : The storage engine for the table doesn't support optimize
6
note : The storage engine for the table doesn't support optimize
7
create table `t``1`(a int);
8
create table `t 1`(a int);
11
drop table `t``1`, `t 1`;
12
create database d_bug25347;
14
create table t_bug25347 (a int) engine=MyISAM;
15
insert into t_bug25347 values (1),(2),(3);
19
Error : Incorrect file format 't_bug25347'
21
insert into t_bug25347 values (4),(5),(6);
22
ERROR HY000: Incorrect file format 't_bug25347'
24
warning : Number of rows changed from 0 to 3
26
insert into t_bug25347 values (7),(8),(9);
27
select * from t_bug25347;
35
drop table t_bug25347;
36
drop database d_bug25347;