~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/almost_full.test

  • Committer: Brian Aker
  • Date: 2009-01-09 22:07:54 UTC
  • Revision ID: brian@tangent.org-20090109220754-1y50h7lqi9i1ifcs
Dead test/wrong test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
drop table if exists t1;
7
7
--enable_warnings
8
8
 
9
 
CREATE TEMPORARY TABLE t1 (a int auto_increment primary key not null, b longtext) ENGINE=MyISAM;
 
9
#Drizzle does not support global myisam_data_pointer_size system variable
 
10
#set global myisam_data_pointer_size=2;
 
11
CREATE TABLE t1 (a int auto_increment primary key not null, b longtext) ENGINE=MyISAM;
10
12
 
11
13
--disable_query_log
12
 
begin;
13
14
let $1= 303;
14
15
while ($1)
15
16
{
16
17
  INSERT INTO t1 SET b=repeat('a',200);
17
18
  dec $1;
18
19
}
19
 
commit;
20
20
--enable_query_log
21
21
 
22
22
#DELETE FROM t1 WHERE a=1 or a=5;
23
23
 
24
 
#--error ER_RECORD_FILE_FULL
 
24
--error 1114
25
25
#INSERT INTO t1 SET b=repeat('a',600);
26
26
#CHECK TABLE t1 EXTENDED;
27
27
 
28
 
#--error ER_RECORD_FILE_FULL
 
28
--error 1114
29
29
#UPDATE t1 SET b=repeat('a', 800) where a=10;
30
30
#CHECK TABLE t1 EXTENDED;
31
31
 
35
35
#DELETE FROM t1 WHERE a=2 or a=6;
36
36
#UPDATE t1 SET b=repeat('a', 600) where a=11;
37
37
#CHECK TABLE t1 EXTENDED;
38
 
drop table t1;
 
38
#drop table t1;
 
39
 
 
40
#set global myisam_data_pointer_size=default;
39
41
 
40
42
# End of 4.1 tests