mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +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
17 lines
624 B
Text
17 lines
624 B
Text
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;
|