~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/almost_full.test

  • Committer: Stewart Smith
  • Date: 2009-03-11 06:37:19 UTC
  • mto: (910.4.19 sparc) (937.2.1 sparc)
  • mto: This revision was merged to the branch mainline in revision 931.
  • Revision ID: stewart@flamingspork.com-20090311063719-v9iqjd00ts6260vv
batch up more INSERTs into transactions to help tests run quicker.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
CREATE TABLE t1 (a int auto_increment primary key not null, b longtext) ENGINE=MyISAM;
12
12
 
13
13
--disable_query_log
 
14
begin;
14
15
let $1= 303;
15
16
while ($1)
16
17
{
17
18
  INSERT INTO t1 SET b=repeat('a',200);
18
19
  dec $1;
19
20
}
 
21
commit;
20
22
--enable_query_log
21
23
 
22
24
#DELETE FROM t1 WHERE a=1 or a=5;