alaminopu / wp-test-skeleton

A basic skeleton for writing test for WordPress Plugins/Themes.
GNU General Public License v3.0
0 stars 0 forks source link

Unknown system variable 'storage_engine' for query SET storage_engine = INNODB #1

Open alaminopu opened 7 years ago

alaminopu commented 7 years ago

When running phpunit on MySQL 5.7, this error occurs.

alaminopu commented 7 years ago

Possible solution. Replace storage_engine with default_storage_engine on install.php file.

$wpdb->query( 'SET default_storage_engine = INNODB' );

Reference: WordPress Core trac