mirror of
https://github.com/MariaDB/server.git
synced 2025-12-03 05:41:09 +03:00
Created suites for heap, archive and csv.
Moved test from main suite to the new suites. Move tests from maria/t and maria/r to maria mysql-test/mysql-test-run.pl: Added support for the new suites
This commit is contained in:
72
mysql-test/suite/maria/group_commit.test
Normal file
72
mysql-test/suite/maria/group_commit.test
Normal file
@@ -0,0 +1,72 @@
|
||||
# Test different ways of syncing (mostly syntax)
|
||||
--source include/have_maria.inc
|
||||
|
||||
--disable_warnings
|
||||
drop table if exists t1;
|
||||
--enable_warnings
|
||||
|
||||
create table t1 (a int);
|
||||
|
||||
SET GLOBAL aria_group_commit="NONE";
|
||||
SET GLOBAL aria_group_commit_interval= 0;
|
||||
--disable_query_log
|
||||
let $num = 5000;
|
||||
while ($num)
|
||||
{
|
||||
insert into t1 values (1);
|
||||
dec $num;
|
||||
}
|
||||
--enable_query_log
|
||||
SET GLOBAL aria_group_commit="NONE";
|
||||
SET GLOBAL aria_group_commit_interval= 100;
|
||||
--disable_query_log
|
||||
let $num = 5000;
|
||||
while ($num)
|
||||
{
|
||||
insert into t1 values (1);
|
||||
dec $num;
|
||||
}
|
||||
--enable_query_log
|
||||
SET GLOBAL aria_group_commit="HARD";
|
||||
SET GLOBAL aria_group_commit_interval= 0;
|
||||
--disable_query_log
|
||||
let $num = 5000;
|
||||
while ($num)
|
||||
{
|
||||
insert into t1 values (1);
|
||||
dec $num;
|
||||
}
|
||||
--enable_query_log
|
||||
SET GLOBAL aria_group_commit="HARD";
|
||||
SET GLOBAL aria_group_commit_interval= 100;
|
||||
--disable_query_log
|
||||
let $num = 5000;
|
||||
while ($num)
|
||||
{
|
||||
insert into t1 values (1);
|
||||
dec $num;
|
||||
}
|
||||
--enable_query_log
|
||||
SET GLOBAL aria_group_commit="SOFT";
|
||||
SET GLOBAL aria_group_commit_interval= 0;
|
||||
--disable_query_log
|
||||
let $num = 5000;
|
||||
while ($num)
|
||||
{
|
||||
insert into t1 values (1);
|
||||
dec $num;
|
||||
}
|
||||
--enable_query_log
|
||||
SET GLOBAL aria_group_commit="SOFT";
|
||||
SET GLOBAL aria_group_commit_interval= 100;
|
||||
--disable_query_log
|
||||
let $num = 5000;
|
||||
while ($num)
|
||||
{
|
||||
insert into t1 values (1);
|
||||
dec $num;
|
||||
}
|
||||
--enable_query_log
|
||||
SET GLOBAL aria_group_commit="NONE";
|
||||
SET GLOBAL aria_group_commit_interval= 0;
|
||||
drop table t1;
|
||||
Reference in New Issue
Block a user