1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00
Fixed that negative arguments to certain integer options wrap around.
This commit is contained in:
svoj@mysql.com
2005-02-17 15:04:04 +04:00
parent e2e94c9e3f
commit 349112292f
4 changed files with 20 additions and 0 deletions

View File

@ -482,3 +482,8 @@ SET GLOBAL MYISAM_DATA_POINTER_SIZE= 8;
SHOW VARIABLES LIKE 'MYISAM_DATA_POINTER_SIZE';
Variable_name Value
myisam_data_pointer_size 8
SET GLOBAL table_cache=-1;
SHOW VARIABLES LIKE 'table_cache';
Variable_name Value
table_cache 1
SET GLOBAL table_cache=DEFAULT;