You appear to be a bot. Output may be restricted
Description
Convert any MyISAM tables to InnoDB
Usage
OIK_innodb::maybe_convert();
Parameters
Returns
voidSource
File name: oik-batch/class-oik-innodb.phpLines:
1 to 7 of 7
function maybe_convert() { $myisam_table_count = $this->query_count( "MyISAM" ); if ( $myisam_table_count ) { $this->convert_engine(); $this->reset(); } }View on GitHub