~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/myisamcheck.test

  • Committer: Brian Aker
  • Date: 2008-12-18 17:54:22 UTC
  • mfrom: (713.1.5 devel)
  • Revision ID: brian@tangent.org-20081218175422-zqfm3mpueuq7z2az
Merge from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
--enable_warnings
7
7
 
8
8
# 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));
 
9
create table t1(n int not null, key(n), key(n), key(n), key(n)) engine=myisam;
10
10
let $1=10000;
11
11
disable_query_log;
12
12
while ($1)
24
24
 
25
25
# End of 4.1 tests
26
26
 
27
 
#
28
 
# Bug #9897  Views: 'Check Table' crashes MySQL, with a view and a table 
29
 
# in the statement
30
 
#
31
 
 
32
 
connection default;
33
 
Create table t1(f1 int);
34
 
Create table t2(f1 int);
35
 
Check Table v1,t2;
36
 
drop table t1, t2;
37
27
 
38
28
#
39
29
# BUG#26325 - TEMPORARY TABLE "corrupt" after first read, according to CHECK
40
30
#             TABLE
41
31
#
42
 
CREATE TEMPORARY TABLE t1(a INT);
 
32
CREATE TEMPORARY TABLE t1(a INT) engine=myisam;
43
33
CHECK TABLE t1;
44
34
REPAIR TABLE t1;
45
35
DROP TABLE t1;