1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

innodb_mysql.test, variables.result, variables.test, innodb_mysql.result:

Minor post-fix for bug#34223.
This commit is contained in:
gshchepa/uchum@host.loc
2008-02-07 11:12:49 +04:00
parent 8adc63ad36
commit fa1f0d6b17
4 changed files with 20 additions and 19 deletions

View File

@ -982,4 +982,18 @@ desc t1;
show create table t1;
drop table t1;
#
# Bug #34223: Assertion failed: (optp->var_type & 127) == 8,
# file .\my_getopt.c, line 830
#
set @my_innodb_autoextend_increment=@@global.innodb_autoextend_increment;
set global innodb_autoextend_increment=8;
set global innodb_autoextend_increment=@my_innodb_autoextend_increment;
set @my_innodb_commit_concurrency=@@global.innodb_commit_concurrency;
set global innodb_commit_concurrency=0;
set global innodb_commit_concurrency=@my_innodb_commit_concurrency;
--echo End of 5.0 tests