mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
MDEV-11429 Increase number of max table_open_cache instances
Increase max number of possible table_open_cache instances from 512K to 1024K. This only affects user who are trying to set the variable over the old limit. Delete not used test table_open_cache_instances_basic (Need to be added back and rewritten in 10.2)
This commit is contained in:
@ -27,7 +27,7 @@ Warnings:
|
||||
Warning 1292 Truncated incorrect table_open_cache value: '1073741824'
|
||||
SELECT @@global.table_open_cache ;
|
||||
@@global.table_open_cache
|
||||
524288
|
||||
1048576
|
||||
SET @@global.table_open_cache = 18000;
|
||||
SELECT @@global.table_open_cache ;
|
||||
@@global.table_open_cache
|
||||
@ -48,7 +48,7 @@ Warnings:
|
||||
Warning 1292 Truncated incorrect table_open_cache value: '100000000000'
|
||||
SELECT @@global.table_open_cache ;
|
||||
@@global.table_open_cache
|
||||
524288
|
||||
1048576
|
||||
SET @@global.table_open_cache = -1024;
|
||||
Warnings:
|
||||
Warning 1292 Truncated incorrect table_open_cache value: '-1024'
|
||||
|
Reference in New Issue
Block a user