summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb_zip/r/cmp_drop_table.result
blob: 530932e99fb5103f309d241753793c343807b2a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
create table t1(a text) engine=innodb key_block_size=4;
SELECT page_size FROM information_schema.innodb_cmpmem WHERE pages_used > 0;
page_size
4096
drop table t1;
SELECT page_size FROM information_schema.innodb_cmpmem WHERE pages_used > 0;
page_size
4096
create table t2(a text) engine=innodb;
SELECT page_size FROM information_schema.innodb_cmpmem WHERE pages_used > 0;
page_size
drop table t2;