mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 20:07:13 +02:00
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:
parent
f3e3fe866b
commit
358327618d
65 changed files with 341 additions and 1591 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue