1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-05 13:16:09 +03:00

Update mysql-test innodb_bug42101 to match the latest behavior

(different error number).
This commit is contained in:
Vasil Dimov
2010-04-14 18:30:07 +03:00
parent 5b02fbdd23
commit 1c98702d2a
2 changed files with 4 additions and 4 deletions

View File

@@ -3,12 +3,12 @@ select @@innodb_commit_concurrency;
@@innodb_commit_concurrency @@innodb_commit_concurrency
0 0
set global innodb_commit_concurrency=1; set global innodb_commit_concurrency=1;
ERROR HY000: Incorrect arguments to SET ERROR 42000: Variable 'innodb_commit_concurrency' can't be set to the value of '1'
select @@innodb_commit_concurrency; select @@innodb_commit_concurrency;
@@innodb_commit_concurrency @@innodb_commit_concurrency
0 0
set global innodb_commit_concurrency=42; set global innodb_commit_concurrency=42;
ERROR HY000: Incorrect arguments to SET ERROR 42000: Variable 'innodb_commit_concurrency' can't be set to the value of '42'
select @@innodb_commit_concurrency; select @@innodb_commit_concurrency;
@@innodb_commit_concurrency @@innodb_commit_concurrency
0 0

View File

@@ -7,10 +7,10 @@
set global innodb_commit_concurrency=0; set global innodb_commit_concurrency=0;
select @@innodb_commit_concurrency; select @@innodb_commit_concurrency;
--error ER_WRONG_ARGUMENTS --error ER_WRONG_VALUE_FOR_VAR
set global innodb_commit_concurrency=1; set global innodb_commit_concurrency=1;
select @@innodb_commit_concurrency; select @@innodb_commit_concurrency;
--error ER_WRONG_ARGUMENTS --error ER_WRONG_VALUE_FOR_VAR
set global innodb_commit_concurrency=42; set global innodb_commit_concurrency=42;
select @@innodb_commit_concurrency; select @@innodb_commit_concurrency;
set global innodb_commit_concurrency=0; set global innodb_commit_concurrency=0;