mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge 10.2 to 10.3
This commit is contained in:
@@ -1473,7 +1473,7 @@ VARIABLE_SCOPE GLOBAL
|
||||
VARIABLE_TYPE BIGINT UNSIGNED
|
||||
VARIABLE_COMMENT Size of each log file in a log group.
|
||||
NUMERIC_MIN_VALUE 1048576
|
||||
NUMERIC_MAX_VALUE 549755813888
|
||||
NUMERIC_MAX_VALUE 17592186044415
|
||||
NUMERIC_BLOCK_SIZE 65536
|
||||
ENUM_VALUE_LIST NULL
|
||||
READ_ONLY YES
|
||||
|
@@ -1,18 +1,9 @@
|
||||
SET @start_value = @@global.table_open_cache ;
|
||||
SELECT @start_value;
|
||||
@start_value
|
||||
421
|
||||
'#--------------------FN_DYNVARS_001_01------------------------#'
|
||||
SET @@global.table_open_cache = 99;
|
||||
SET @@global.table_open_cache = DeFAULT;
|
||||
SELECT @@global.table_open_cache;
|
||||
@@global.table_open_cache
|
||||
2000
|
||||
'#---------------------FN_DYNVARS_001_02-------------------------#'
|
||||
SET @@global.table_open_cache = Default;
|
||||
SELECT @@global.table_open_cache = 400;
|
||||
@@global.table_open_cache = 400
|
||||
0
|
||||
SELECT @@global.table_open_cache > 0;
|
||||
@@global.table_open_cache > 0
|
||||
1
|
||||
'#--------------------FN_DYNVARS_001_03------------------------#'
|
||||
SET @@global.table_open_cache = 8;
|
||||
Warnings:
|
||||
@@ -106,6 +97,3 @@ ERROR 42S02: Unknown table 'global' in field list
|
||||
SELECT table_open_cache = @@session.table_open_cache ;
|
||||
ERROR 42S22: Unknown column 'table_open_cache' in 'field list'
|
||||
SET @@global.table_open_cache = @start_value;
|
||||
SELECT @@global.table_open_cache ;
|
||||
@@global.table_open_cache
|
||||
421
|
||||
|
Reference in New Issue
Block a user