Speed up of test suite:

- Added --disable_query_log ; begin ; .... commit; --enable_query_log around all while loops that does insert
This commit is contained in:
Michael Widenius 2009-10-28 09:52:34 +02:00
commit 358327618d
65 changed files with 341 additions and 1591 deletions

View file

@ -94,11 +94,13 @@ CREATE TABLE t1(id MEDIUMINT NOT NULL AUTO_INCREMENT,
--disable_query_log
let $n= 100;
begin;
while ($n)
{
insert into t1 (f1) values (repeat('a',25));
dec $n;
}
commit;
--enable_query_log
show create table t1;