Assuming an InnoDB table, will the following command …
CHECK TABLE table_name;
… cause MySQL to …
- a.) Check only the data content of the table
- b.) Check only the index content of the table
- c.) Check both the data content and the index content of the table
Those options are ignored on innoDb tables. MySQL CHECK TABLE.
This guy took at look at the
CHECK TABLEcode for innoDb and explains it pretty well.