mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 19:11:46 +01:00
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;
|