mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
Disable defragmentation support for now.
This commit is contained in:
parent
f0eb8f153d
commit
8773f14677
1 changed files with 2 additions and 1 deletions
|
@ -15295,7 +15295,8 @@ ha_innobase::optimize(
|
|||
This works OK otherwise, but MySQL locks the entire table during
|
||||
calls to OPTIMIZE, which is undesirable. */
|
||||
|
||||
if (srv_defragment) {
|
||||
/* TODO: Defragment is disabled for now */
|
||||
if (0) {
|
||||
int err;
|
||||
|
||||
err = defragment_table(m_prebuilt->table->name.m_name, NULL, false);
|
||||
|
|
Loading…
Reference in a new issue