mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
22 lines
617 B
Text
22 lines
617 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
|
|
set global innodb_commit_concurrency=DEFAULT;
|
|
select @@innodb_commit_concurrency;
|
|
@@innodb_commit_concurrency
|
|
0
|