~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/myisamcheck.test

  • Committer: Brian Aker
  • Date: 2009-07-12 00:49:18 UTC
  • mfrom: (1063.9.51 brian-tmp-fix)
  • Revision ID: brian@gaz-20090712004918-chprmyj387ex6l8a
Merge Stewart

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
connect (con1,localhost,root,,);
2
 
connect (con2,localhost,root,,);
3
 
connection con1;
4
1
--disable_warnings
5
2
drop table if exists t1,t2;
6
3
--enable_warnings
7
4
 
8
5
# Add a lot of keys to slow down check
9
 
create table t1(n int not null, key(n), key(n), key(n), key(n)) engine=myisam;
 
6
create temporary table t1(n int not null, key(n), key(n), key(n), key(n)) engine=myisam;
10
7
let $1=10000;
11
8
disable_query_log;
12
9
while ($1)
16
13
}
17
14
enable_query_log;
18
15
send check table t1 extended;
19
 
connection con2;
20
16
insert into t1 values (200000);
21
 
connection con1;
22
 
reap;
23
17
drop table t1;
24
18
 
25
19
# End of 4.1 tests