Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

No Format
mysql> SELECT TABLE_NAME, ENGINE FROM information_schema.TABLES where TABLE_SCHEMA = 'YOUR_SCHEMA';

 

To convert the table to InnoDB:

No Format
mysql> ALTER TABLE <table_name> ENGINE=INNODB;


Currently, no DDL replication is supported for MySQL.

...