~posulliv/drizzle/memcached_applier

« back to all changes in this revision

Viewing changes to tests/r/myisamcheck.result

  • Committer: Jay Pipes
  • Date: 2009-08-03 14:23:22 UTC
  • mfrom: (1039.2.68 staging)
  • mto: This revision was merged to the branch mainline in revision 1078.
  • Revision ID: jpipes@serialcoder-20090803142322-1g67h7su9mocg9ig
Merge trunk

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