~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/myisamcheck.result

  • Committer: Monty Taylor
  • Date: 2009-07-27 17:30:05 UTC
  • mto: (1093.7.1 captain)
  • mto: This revision was merged to the branch mainline in revision 1101.
  • Revision ID: mordred@inaugust.com-20090727173005-ohhbhnifbo1qh3hw
Removed drizzlecheck program and the myisamcheck test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
drop table if exists t1,t2;
2
 
create temporary 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
 
DROP TABLE t1;
11
 
Table   Op      Msg_type        Msg_text
12
 
test.t1 check   status  OK