mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Fix for bug#52501 consisting of changes of some sys_vars tests including review results.
This commit is contained in:
@ -1,30 +1,23 @@
|
||||
SET @global_start_value = @@global.innodb_commit_concurrency;
|
||||
SELECT @global_start_value;
|
||||
@global_start_value
|
||||
0
|
||||
10
|
||||
'#--------------------FN_DYNVARS_046_01------------------------#'
|
||||
SET @@global.innodb_commit_concurrency = 0;
|
||||
SET @@global.innodb_commit_concurrency = DEFAULT;
|
||||
SELECT @@global.innodb_commit_concurrency;
|
||||
@@global.innodb_commit_concurrency
|
||||
0
|
||||
10
|
||||
'#---------------------FN_DYNVARS_046_02-------------------------#'
|
||||
SET innodb_commit_concurrency = 1;
|
||||
ERROR HY000: Variable 'innodb_commit_concurrency' is a GLOBAL variable and should be set with SET GLOBAL
|
||||
SELECT @@innodb_commit_concurrency;
|
||||
@@innodb_commit_concurrency
|
||||
0
|
||||
10
|
||||
SELECT local.innodb_commit_concurrency;
|
||||
ERROR 42S02: Unknown table 'local' in field list
|
||||
SET global innodb_commit_concurrency = 0;
|
||||
SELECT @@global.innodb_commit_concurrency;
|
||||
@@global.innodb_commit_concurrency
|
||||
0
|
||||
ERROR HY000: Incorrect arguments to SET
|
||||
'#--------------------FN_DYNVARS_046_03------------------------#'
|
||||
SET @@global.innodb_commit_concurrency = 0;
|
||||
SELECT @@global.innodb_commit_concurrency;
|
||||
@@global.innodb_commit_concurrency
|
||||
0
|
||||
SET @@global.innodb_commit_concurrency = 1;
|
||||
SELECT @@global.innodb_commit_concurrency;
|
||||
@@global.innodb_commit_concurrency
|
||||
@ -35,27 +28,17 @@ SELECT @@global.innodb_commit_concurrency;
|
||||
1000
|
||||
'#--------------------FN_DYNVARS_046_04-------------------------#'
|
||||
SET @@global.innodb_commit_concurrency = -1;
|
||||
Warnings:
|
||||
Warning 1292 Truncated incorrect commit_concurrency value: '18446744073709551615'
|
||||
SELECT @@global.innodb_commit_concurrency;
|
||||
@@global.innodb_commit_concurrency
|
||||
1000
|
||||
SELECT @@global.innodb_commit_concurrency IN (4294967295,18446744073709551615);
|
||||
@@global.innodb_commit_concurrency IN (4294967295,18446744073709551615)
|
||||
1
|
||||
SET @@global.innodb_commit_concurrency = "T";
|
||||
ERROR 42000: Incorrect argument type to variable 'innodb_commit_concurrency'
|
||||
SELECT @@global.innodb_commit_concurrency;
|
||||
@@global.innodb_commit_concurrency
|
||||
1000
|
||||
SET @@global.innodb_commit_concurrency = "Y";
|
||||
ERROR 42000: Incorrect argument type to variable 'innodb_commit_concurrency'
|
||||
SELECT @@global.innodb_commit_concurrency;
|
||||
@@global.innodb_commit_concurrency
|
||||
1000
|
||||
SET @@global.innodb_commit_concurrency = 1001;
|
||||
Warnings:
|
||||
Warning 1292 Truncated incorrect commit_concurrency value: '1001'
|
||||
SELECT @@global.innodb_commit_concurrency;
|
||||
@@global.innodb_commit_concurrency
|
||||
1000
|
||||
1001
|
||||
'#----------------------FN_DYNVARS_046_05------------------------#'
|
||||
SELECT @@global.innodb_commit_concurrency =
|
||||
VARIABLE_VALUE FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
|
||||
@ -65,32 +48,33 @@ VARIABLE_VALUE
|
||||
1
|
||||
SELECT @@global.innodb_commit_concurrency;
|
||||
@@global.innodb_commit_concurrency
|
||||
1000
|
||||
1001
|
||||
SELECT VARIABLE_VALUE FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
|
||||
WHERE VARIABLE_NAME='innodb_commit_concurrency';
|
||||
VARIABLE_VALUE
|
||||
1000
|
||||
1001
|
||||
'#---------------------FN_DYNVARS_046_06-------------------------#'
|
||||
SET @@global.innodb_commit_concurrency = OFF;
|
||||
ERROR 42000: Incorrect argument type to variable 'innodb_commit_concurrency'
|
||||
SELECT @@global.innodb_commit_concurrency;
|
||||
@@global.innodb_commit_concurrency
|
||||
1000
|
||||
1001
|
||||
SET @@global.innodb_commit_concurrency = ON;
|
||||
ERROR 42000: Incorrect argument type to variable 'innodb_commit_concurrency'
|
||||
SELECT @@global.innodb_commit_concurrency;
|
||||
@@global.innodb_commit_concurrency
|
||||
1000
|
||||
1001
|
||||
'#---------------------FN_DYNVARS_046_07----------------------#'
|
||||
SET @@global.innodb_commit_concurrency = TRUE;
|
||||
SELECT @@global.innodb_commit_concurrency;
|
||||
@@global.innodb_commit_concurrency
|
||||
1
|
||||
SET @@global.innodb_commit_concurrency = FALSE;
|
||||
ERROR HY000: Incorrect arguments to SET
|
||||
SELECT @@global.innodb_commit_concurrency;
|
||||
@@global.innodb_commit_concurrency
|
||||
0
|
||||
1
|
||||
SET @@global.innodb_commit_concurrency = @global_start_value;
|
||||
SELECT @@global.innodb_commit_concurrency;
|
||||
@@global.innodb_commit_concurrency
|
||||
0
|
||||
10
|
||||
|
Reference in New Issue
Block a user