mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
29a46b4cf9
layout as we always had in trees containing only the builtin 2) win\configure.js WITH_INNOBASE_STORAGE_ENGINE still works.
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
|