@@ -149,20 +149,20 @@ ID FOR_COL_NAME REF_COL_NAME POS
149
149
DROP TABLE IF EXISTS t_redundant, t_compact, t_compressed, t_dynamic;
150
150
CREATE TABLE t_redundant (a INT KEY, b TEXT) ROW_FORMAT=REDUNDANT ENGINE=innodb;
151
151
CREATE TABLE t_compact (a INT KEY, b TEXT) ROW_FORMAT=COMPACT ENGINE=innodb;
152
- CREATE TABLE t_compressed (a INT KEY, b TEXT) ROW_FORMAT=COMPRESSED ENGINE=innodb;
152
+ CREATE TABLE t_compressed (a INT KEY, b TEXT) ROW_FORMAT=COMPRESSED ENGINE=innodb KEY_BLOCK_SIZE=2 ;
153
153
CREATE TABLE t_dynamic (a INT KEY, b TEXT) ROW_FORMAT=DYNAMIC ENGINE=innodb;
154
154
=== information_schema.innodb_sys_tables and innodb_sys_tablespaces ===
155
155
Table Name Tablespace Table Flags Columns Row Format Zip Size Space Type
156
156
test/t_compact test/t_compact 1 5 Compact 0 Single
157
- test/t_compressed test/t_compressed 41 5 Compressed 8192 Single
157
+ test/t_compressed test/t_compressed 37 5 Compressed 2048 Single
158
158
test/t_dynamic test/t_dynamic 33 5 Dynamic 0 Single
159
159
test/t_redundant test/t_redundant 0 5 Redundant 0 Single
160
160
=== information_schema.innodb_sys_tablespaces and innodb_sys_datafiles ===
161
161
Space Name Path Page Size Zip Size Formats Permitted Space Type
162
162
innodb_system MYSQLD_DATADIR/ibdata1 DEFAULT 0 Compact or Redundant System
163
163
test/t_redundant MYSQLD_DATADIR/test/t_redundant.ibd DEFAULT 0 Compact or Redundant Single
164
164
test/t_compact MYSQLD_DATADIR/test/t_compact.ibd DEFAULT 0 Compact or Redundant Single
165
- test/t_compressed MYSQLD_DATADIR/test/t_compressed.ibd DEFAULT 8192 Compressed Single
165
+ test/t_compressed MYSQLD_DATADIR/test/t_compressed.ibd DEFAULT 2048 Compressed Single
166
166
test/t_dynamic MYSQLD_DATADIR/test/t_dynamic.ibd DEFAULT 0 Dynamic Single
167
167
DROP TABLE t_redundant, t_compact, t_compressed, t_dynamic;
168
168
SELECT count(*) FROM INFORMATION_SCHEMA.INNODB_SYS_TABLESTATS;
0 commit comments