mirror of
https://github.com/MariaDB/server.git
synced 2025-08-27 13:04:36 +03:00
Final fix for bug#38349: Did the changes due to the 2 reviews.
- Updated slow_query_log_file_basic and general_log_file basis instead of the func version as the func version run good but the basic versions fail. - Sent innodb.test to dev@innodb.com. - variables.test has differences probably due to a bug in mtr or in the SET statement (see bug#39369). - general_log_file_basic.test and slow_query_log_file_bsaic.test have differences, which might be produced by the new mtr (see bug#38124).
This commit is contained in:
@@ -93,14 +93,14 @@ ERROR HY000: Variable 'innodb_fast_shutdown' is a GLOBAL variable and should be
|
||||
SET @@local.innodb_fast_shutdown = 0;
|
||||
ERROR HY000: Variable 'innodb_fast_shutdown' is a GLOBAL variable and should be set with SET GLOBAL
|
||||
'#----------------------FN_DYNVARS_042_06------------------------#'
|
||||
SELECT count(VARIABLE_VALUE) AS res_is_0
|
||||
FROM INFORMATION_SCHEMA.SESSION_VARIABLES
|
||||
SELECT count(VARIABLE_VALUE) AS res_is_0
|
||||
FROM INFORMATION_SCHEMA.SESSION_VARIABLES
|
||||
WHERE VARIABLE_NAME='innodb_fast_shutdown';
|
||||
res_is_0
|
||||
1
|
||||
'#----------------------FN_DYNVARS_042_07------------------------#'
|
||||
SELECT @@global.innodb_fast_shutdown =
|
||||
VARIABLE_VALUE FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
|
||||
VARIABLE_VALUE FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
|
||||
WHERE VARIABLE_NAME='innodb_fast_shutdown';
|
||||
@@global.innodb_fast_shutdown =
|
||||
VARIABLE_VALUE
|
||||
@@ -125,3 +125,7 @@ SET @@global.innodb_fast_shutdown = FALSE;
|
||||
SELECT @@global.innodb_fast_shutdown;
|
||||
@@global.innodb_fast_shutdown
|
||||
0
|
||||
SET @@global.innodb_fast_shutdown = @global_start_value;
|
||||
SELECT @@global.innodb_fast_shutdown;
|
||||
@@global.innodb_fast_shutdown
|
||||
1
|
||||
|
Reference in New Issue
Block a user