1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

MDEV-30544 Deprecate innodb_defragment and related parameters

There is a little used option innodb_defragment that would make
OPTIMIZE TABLE not rebuild the table as usual for InnoDB, but
instead cause the index B-trees to be optimized in place.

This option uses excessive locking (exclusively locking index trees).
It never covered SPATIAL INDEX or FULLTEXT INDEX. Storage space
was never reclaimed.

Because this option is not particularly useful and causes a
maintenance burden (most recently in
commit de4030e4d4),
it is best to deprecate it, to prepare for its removal.
This commit is contained in:
Marko Mäkelä
2023-02-02 07:46:08 +02:00
parent 2b13ae1a31
commit d5d7c8ba96
16 changed files with 96 additions and 8 deletions

View File

@ -1,2 +1 @@
--default-storage-engine=MyISAM
--innodb-defragment=0