mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Scaled back to number of open cached tables to 400 in open_cache as well as definition_cache
Also fixed test cases related to this
This commit is contained in:
@ -4,7 +4,7 @@
|
||||
# Scope: GLOBAL #
|
||||
# Access Type: Dynamic #
|
||||
# Data Type: Numeric #
|
||||
# Default Value: 128 #
|
||||
# Default Value: 400 #
|
||||
# Range: 1 - 524288 #
|
||||
# #
|
||||
# #
|
||||
@ -52,7 +52,7 @@ SELECT @@global.table_definition_cache;
|
||||
###############################################
|
||||
|
||||
SET @@global.table_definition_cache = DEFAULT;
|
||||
SELECT @@global.table_definition_cache = 128;
|
||||
SELECT @@global.table_definition_cache = 400;
|
||||
|
||||
|
||||
--echo '#--------------------FN_DYNVARS_019_03------------------------#'
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Scope: GLOBAL #
|
||||
# Access Type: Dynamic #
|
||||
# Data Type: numeric #
|
||||
# Default Value: 64 #
|
||||
# Range: 1-524288 #
|
||||
# Default Value: 400 #
|
||||
# Range: 64-524288 #
|
||||
# #
|
||||
# #
|
||||
# Creation Date: 2008-02-13 #
|
||||
@ -54,7 +54,7 @@ SELECT @@global.table_open_cache;
|
||||
###############################################
|
||||
|
||||
SET @@global.table_open_cache = Default;
|
||||
SELECT @@global.table_open_cache = 64;
|
||||
SELECT @@global.table_open_cache = 400;
|
||||
|
||||
--echo '#--------------------FN_DYNVARS_001_03------------------------#'
|
||||
########################################################################
|
||||
|
Reference in New Issue
Block a user