mirror of
https://github.com/MariaDB/server.git
synced 2025-05-05 16:59:35 +03:00
the InnoDB Plugin tests are now in mysql-test/suite/innodb_plugin. Move InnoDB tests to the innodb suite at mysql-test/suite/innodb.
23 lines
617 B
Plaintext
23 lines
617 B
Plaintext
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
|