N98\Magento\Command\System\Check\MySQL\EnginesCheck::checkInnodbEngine PHP Method

checkInnodbEngine() private method

private checkInnodbEngine ( Varien_Db_Adapter_Interface $dbAdapter ) : boolean
$dbAdapter Varien_Db_Adapter_Interface
return boolean
    private function checkInnodbEngine(Varien_Db_Adapter_Interface $dbAdapter)
    {
        $innodbFound = false;
        $engines = $dbAdapter->fetchAll('SHOW ENGINES');
        foreach ($engines as $engine) {
            if (strtolower($engine['Engine']) === 'innodb') {
                $innodbFound = true;
                break;
            }
        }
        return $innodbFound;
    }