If you do what I think you do, yes it is normal.
OPTIMIZE and REPAIR are legacy MySQL commands for the legacy MyISAM storage engine. If you used my plugin you probably upgraded your tables from MyISAM to InnoDB. InnoDB is far more robust about maintaining internal integrity than is MyISAM — it’s self-optimizing and self-repairing.
The OPTIMIZE TABLE
command does nothing on InnoDB tables. On my setup when I say OPTIMIZE TABLE wp_options
(for example) I get this message:
> Table does not support optimize, doing recreate + analyze instead
The REPAIR TABLE
doesn’t do anything either. It gives this message.
> The storage engine for the table doesn’t support repair
Please don’t hesitate to follow up if I have this wrong.
Nice site by the way. Congratulations.