~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/myisamcheck.result

  • Committer: Brian Aker
  • Date: 2009-01-07 09:27:07 UTC
  • Revision ID: brian@tangent.org-20090107092707-bn67qpdllfcyh3j9
Removing dead field translator code.

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;