~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/myisamcheck.result

  • Committer: Brian Aker
  • Date: 2009-07-12 00:49:18 UTC
  • mfrom: (1063.9.51 brian-tmp-fix)
  • Revision ID: brian@gaz-20090712004918-chprmyj387ex6l8a
Merge Stewart

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
drop table if exists t1,t2;
2
 
create table t1(n int not null, key(n), key(n), key(n), key(n)) engine=myisam;
 
2
create temporary table t1(n int not null, key(n), key(n), key(n), key(n)) engine=myisam;
3
3
check table t1 extended;
4
4
insert into t1 values (200000);
5
5
Table   Op      Msg_type        Msg_text
7
7
drop table t1;
8
8
CREATE TEMPORARY TABLE t1(a INT) engine=myisam;
9
9
CHECK TABLE t1;
10
 
Table   Op      Msg_type        Msg_text
11
 
test.t1 check   status  OK
12
10
DROP TABLE t1;
 
11
Table   Op      Msg_type        Msg_text
 
12
test.t1 check   status  OK