1
0
mirror of https://github.com/MariaDB/server.git synced 2025-05-13 01:01:44 +03:00
mariadb/mysql-test/suite/maria/group_commit.result
Michael Widenius b04c4801b0 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
2012-04-04 00:16:38 +03:00

18 lines
624 B
Plaintext

drop table if exists t1;
create table t1 (a int);
SET GLOBAL aria_group_commit="NONE";
SET GLOBAL aria_group_commit_interval= 0;
SET GLOBAL aria_group_commit="NONE";
SET GLOBAL aria_group_commit_interval= 100;
SET GLOBAL aria_group_commit="HARD";
SET GLOBAL aria_group_commit_interval= 0;
SET GLOBAL aria_group_commit="HARD";
SET GLOBAL aria_group_commit_interval= 100;
SET GLOBAL aria_group_commit="SOFT";
SET GLOBAL aria_group_commit_interval= 0;
SET GLOBAL aria_group_commit="SOFT";
SET GLOBAL aria_group_commit_interval= 100;
SET GLOBAL aria_group_commit="NONE";
SET GLOBAL aria_group_commit_interval= 0;
drop table t1;