1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

lp:702084 - myisam_block_size is not reported in SHOW GLOBAL VARIABLES

add a read-only server variable @@myisam_block_size
This commit is contained in:
Sergei Golubchik
2011-03-28 16:53:46 +02:00
parent aa8cc81304
commit 0741f1a902
3 changed files with 13 additions and 0 deletions

View File

@ -2445,3 +2445,9 @@ DROP TABLE t1;
SET myisam_sort_buffer_size=@@global.myisam_sort_buffer_size;
SET myisam_repair_threads=@@global.myisam_repair_threads;
End of 5.1 tests
show variables like 'myisam_block_size';
Variable_name Value
myisam_block_size 1024
select @@global.myisam_block_size;
@@global.myisam_block_size
1024