mirror of
https://github.com/MariaDB/server.git
synced 2025-05-05 16:59:35 +03:00
27 lines
810 B
Plaintext
27 lines
810 B
Plaintext
set global innodb_commit_concurrency=0;
|
|
ERROR 42000: Variable 'innodb_commit_concurrency' can't be set to the value of '0'
|
|
select @@innodb_commit_concurrency;
|
|
@@innodb_commit_concurrency
|
|
1
|
|
set global innodb_commit_concurrency=1;
|
|
select @@innodb_commit_concurrency;
|
|
@@innodb_commit_concurrency
|
|
1
|
|
set global innodb_commit_concurrency=42;
|
|
select @@innodb_commit_concurrency;
|
|
@@innodb_commit_concurrency
|
|
42
|
|
set global innodb_commit_concurrency=DEFAULT;
|
|
select @@innodb_commit_concurrency;
|
|
@@innodb_commit_concurrency
|
|
1
|
|
set global innodb_commit_concurrency=0;
|
|
ERROR 42000: Variable 'innodb_commit_concurrency' can't be set to the value of '0'
|
|
select @@innodb_commit_concurrency;
|
|
@@innodb_commit_concurrency
|
|
1
|
|
set global innodb_commit_concurrency=1;
|
|
select @@innodb_commit_concurrency;
|
|
@@innodb_commit_concurrency
|
|
1
|