mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
b04c4801b0
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
72 lines
1.4 KiB
Text
72 lines
1.4 KiB
Text
# 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;
|