~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/myisamcheck.result

  • Committer: Monty Taylor
  • Date: 2008-12-18 01:13:05 UTC
  • mfrom: (685.2.8 fix-testcases)
  • mto: This revision was merged to the branch mainline in revision 714.
  • Revision ID: monty@inaugust.com-20081218011305-ptkts17ti15zoixj
Merged in more test cases.

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));
 
2
create 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
6
6
test.t1 check   status  OK
7
7
drop table t1;
8
 
Create table t1(f1 int);
9
 
Create table t2(f1 int);
10
 
Check Table v1,t2;
11
 
Table   Op      Msg_type        Msg_text
12
 
test.v1 check   Error   Table 'test.v1' doesn't exist
13
 
test.v1 check   status  OK
14
 
test.t2 check   status  OK
15
 
drop table t1, t2;
16
 
CREATE TEMPORARY TABLE t1(a INT);
 
8
CREATE TEMPORARY TABLE t1(a INT) engine=myisam;
17
9
CHECK TABLE t1;
18
10
Table   Op      Msg_type        Msg_text
19
11
test.t1 check   status  OK