~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/archive.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:
42
42
#
43
43
 
44
44
--disable_query_log
 
45
begin;
45
46
INSERT INTO t2 VALUES (1,000001,00,'Omaha','teethe','neat','');
46
47
INSERT INTO t2 VALUES (2,011401,37,'breaking','dreaded','Steinberg','W');
47
48
INSERT INTO t2 VALUES (3,011402,37,'Romans','scholastics','jarring','');
1241
1242
INSERT INTO t2 VALUES (1191,068504,00,'bonfire','corresponds','positively','');
1242
1243
INSERT INTO t2 VALUES (1192,068305,00,'Colombo','hardware','colicky','');
1243
1244
INSERT INTO t2 VALUES (1193,000000,00,'nondecreasing','implant','thrillingly','');
 
1245
commit;
1244
1246
--enable_query_log
1245
1247
 
1246
1248
#
1577
1579
 
1578
1580
let $bug31036=41;
1579
1581
--disable_query_log
 
1582
begin;
1580
1583
while($bug31036)
1581
1584
{
1582
1585
  INSERT INTO t1(a) VALUES (REPEAT('a', 510));
1583
1586
  dec $bug31036;
1584
1587
}
 
1588
commit;
1585
1589
--enable_query_log
1586
1590
INSERT INTO t1(a) VALUES ('');
1587
1591