2010-02-12 14:12:28 +01:00
|
|
|
drop table if exists t1;
|
|
|
|
create table t1 (a int);
|
2010-09-12 18:40:01 +02:00
|
|
|
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;
|
2010-02-12 14:12:28 +01:00
|
|
|
drop table t1;
|