mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 06:44:16 +01:00
19 lines
505 B
Text
19 lines
505 B
Text
|
set global innodb_commit_concurrency=0;
|
||
|
select @@innodb_commit_concurrency;
|
||
|
@@innodb_commit_concurrency
|
||
|
0
|
||
|
set global innodb_commit_concurrency=1;
|
||
|
ERROR HY000: Incorrect arguments to SET
|
||
|
select @@innodb_commit_concurrency;
|
||
|
@@innodb_commit_concurrency
|
||
|
0
|
||
|
set global innodb_commit_concurrency=42;
|
||
|
ERROR HY000: Incorrect arguments to SET
|
||
|
select @@innodb_commit_concurrency;
|
||
|
@@innodb_commit_concurrency
|
||
|
0
|
||
|
set global innodb_commit_concurrency=0;
|
||
|
select @@innodb_commit_concurrency;
|
||
|
@@innodb_commit_concurrency
|
||
|
0
|