~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/pbxt/drizzlecheck.result

  • Committer: Monty Taylor
  • Date: 2008-11-16 05:36:13 UTC
  • mto: (584.1.9 devel)
  • mto: This revision was merged to the branch mainline in revision 589.
  • Revision ID: monty@inaugust.com-20081116053613-bld4rqxhlkb49c02
Split out cache_row and type_holder.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
DROP TABLE IF EXISTS t1, `t``1`, `t 1`;
2
 
drop database if exists client_test_db;
3
 
pbxt.location
4
 
note     : The storage engine for the table doesn't support optimize
5
 
pbxt.statistics
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);
9
 
test.t 1                                           OK
10
 
test.t`1                                           OK
11
 
drop table `t``1`, `t 1`;
12
 
create database d_bug25347;
13
 
use d_bug25347;
14
 
create table t_bug25347 (a int) engine=MyISAM;
15
 
insert into t_bug25347 values (1),(2),(3);
16
 
flush tables;
17
 
removing and creating
18
 
d_bug25347.t_bug25347
19
 
Error    : Incorrect file format 't_bug25347'
20
 
error    : Corrupt
21
 
insert into t_bug25347 values (4),(5),(6);
22
 
ERROR HY000: Incorrect file format 't_bug25347'
23
 
d_bug25347.t_bug25347
24
 
warning  : Number of rows changed from 0 to 3
25
 
status   : OK
26
 
insert into t_bug25347 values (7),(8),(9);
27
 
select * from t_bug25347;
28
 
a
29
 
1
30
 
2
31
 
3
32
 
7
33
 
8
34
 
9
35
 
drop table t_bug25347;
36
 
drop database d_bug25347;
37
 
use test;
38
 
End of 5.0 tests