~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/myisamcheck.result

  • Committer: Monty Taylor
  • Date: 2009-08-24 14:58:00 UTC
  • mto: (1115.3.20 captain)
  • mto: This revision was merged to the branch mainline in revision 1125.
  • Revision ID: mordred@inaugust.com-20090824145800-ocs8pkowylvyuk2s
pandora-buildĀ v0.51

Show diffs side-by-side

added added

removed removed

Lines of Context:
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;
3
 
check table t1 extended;
4
 
insert into t1 values (200000);
5
 
Table   Op      Msg_type        Msg_text
6
 
test.t1 check   status  OK
7
 
drop table t1;
8
 
CREATE TEMPORARY TABLE t1(a INT) engine=myisam;
9
 
CHECK TABLE t1;
10
 
Table   Op      Msg_type        Msg_text
11
 
test.t1 check   status  OK
12
 
REPAIR TABLE t1;
13
 
Table   Op      Msg_type        Msg_text
14
 
test.t1 repair  status  OK
15
 
DROP TABLE t1;