mirror of
https://github.com/MariaDB/server.git
synced 2025-07-04 01:23:45 +03:00
truncating, inserting the same set of rows. When a table is re-created with the same set of rows, the data file size must not grow. rb:968 Approved by Marko.
7 lines
180 B
Plaintext
7 lines
180 B
Plaintext
create table t1 (f1 char(255)) engine innodb;
|
|
ibdata1 size: 27262976 bytes
|
|
drop table t1;
|
|
create table t1 (f1 char(255)) engine innodb;
|
|
ibdata1 size: 27262976 bytes
|
|
drop table t1;
|