mirror of
https://github.com/MariaDB/server.git
synced 2025-04-26 11:49:09 +03:00
Fix : ------- Created separate suites called innodb_zip ans i_innodb_zip that contain all compression tests. Running the new suites with following compression-related parameters : * innodb_compression_level = {1/9} * innodb_log_compressed_pages = {ON/OFF}
15 lines
468 B
Plaintext
15 lines
468 B
Plaintext
set global innodb_file_per_table=on;
|
|
set global innodb_file_format=`1`;
|
|
create table t1(a text) engine=innodb key_block_size=8;
|
|
SELECT page_size FROM information_schema.innodb_cmpmem WHERE pages_used > 0;
|
|
page_size
|
|
8192
|
|
drop table t1;
|
|
SELECT page_size FROM information_schema.innodb_cmpmem WHERE pages_used > 0;
|
|
page_size
|
|
8192
|
|
create table t2(a text) engine=innodb;
|
|
SELECT page_size FROM information_schema.innodb_cmpmem WHERE pages_used > 0;
|
|
page_size
|
|
drop table t2;
|