create table t_compressed(b longblob) engine=InnoDB page_compressed=1; insert into t_compressed values(repeat(1,1000000)); select allocated_size < file_size from information_schema.innodb_sys_tablespaces where name='test/t_compressed'; allocated_size < file_size 1 drop table t_compressed;