1
by brian
clean slate |
1 |
DROP TABLE IF EXISTS t1, `t``1`, `t 1`; |
2 |
drop database if exists client_test_db; |
|
3 |
create table `t``1`(a int); |
|
4 |
create table `t 1`(a int); |
|
5 |
test.t 1 OK |
|
6 |
test.t`1 OK |
|
7 |
drop table `t``1`, `t 1`; |
|
8 |
create database d_bug25347;
|
|
9 |
use d_bug25347;
|
|
685.4.27
by Jay Pipes
Fixes mysqlcheck.test. Removes views from test. |
10 |
create table t_bug25347 (a int) engine=MyISAM;
|
1
by brian
clean slate |
11 |
insert into t_bug25347 values (1),(2),(3);
|
12 |
flush tables;
|
|
13 |
removing and creating
|
|
14 |
d_bug25347.t_bug25347
|
|
15 |
Error : Incorrect file format 't_bug25347'
|
|
685.4.27
by Jay Pipes
Fixes mysqlcheck.test. Removes views from test. |
16 |
status : OK
|
1
by brian
clean slate |
17 |
insert into t_bug25347 values (4),(5),(6);
|
18 |
ERROR HY000: Incorrect file format 't_bug25347'
|
|
19 |
d_bug25347.t_bug25347
|
|
20 |
warning : Number of rows changed from 0 to 3
|
|
21 |
status : OK
|
|
22 |
insert into t_bug25347 values (7),(8),(9);
|
|
23 |
select * from t_bug25347;
|
|
24 |
a
|
|
25 |
1
|
|
26 |
2
|
|
27 |
3
|
|
28 |
7
|
|
29 |
8
|
|
30 |
9
|
|
31 |
drop table t_bug25347;
|
|
32 |
drop database d_bug25347;
|
|
33 |
use test;
|
|
34 |
End of 5.0 tests
|