~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/almost_full.test

  • Committer: Monty Taylor
  • Date: 2009-06-07 12:05:17 UTC
  • mfrom: (1014.5.10 drizzle-test-coverage)
  • mto: This revision was merged to the branch mainline in revision 1056.
  • Revision ID: mordred@inaugust.com-20090607120517-4nv8kd7j3zm265fx
Merged lee from lp:~kalebral/drizzle/drizzle-test-coverage

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
#DELETE FROM t1 WHERE a=1 or a=5;
25
25
 
26
 
--error 1114
 
26
#--error 1114
27
27
#INSERT INTO t1 SET b=repeat('a',600);
28
28
#CHECK TABLE t1 EXTENDED;
29
29
 
30
 
--error 1114
 
30
#--error 1114
31
31
#UPDATE t1 SET b=repeat('a', 800) where a=10;
32
32
#CHECK TABLE t1 EXTENDED;
33
33
 
37
37
#DELETE FROM t1 WHERE a=2 or a=6;
38
38
#UPDATE t1 SET b=repeat('a', 600) where a=11;
39
39
#CHECK TABLE t1 EXTENDED;
40
 
#drop table t1;
 
40
drop table t1;
41
41
 
42
42
#set global myisam_data_pointer_size=default;
43
43