Skip to content
Extraits de code Groupes Projets
Valider ca01d268 rédigé par mattab's avatar mattab
Parcourir les fichiers

removed unused schema code that uses SHOW ENGINES which can fail when PROCESS not granted

parent 3cf40d35
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -47,69 +47,6 @@ class Schema extends Singleton ...@@ -47,69 +47,6 @@ class Schema extends Singleton
return '\Piwik\Db\Schema\\' . $class; return '\Piwik\Db\Schema\\' . $class;
} }
/**
* Get list of schemas
*
* @param string $adapterName
* @return array
*/
public static function getSchemas($adapterName)
{
static $allSchemaNames = array(
'MYSQL' => array(
self::DEFAULT_SCHEMA,
// InfiniDB
),
// Microsoft SQL Server
// 'MSSQL' => array( 'Mssql' ),
// PostgreSQL
// 'PDO_PGSQL' => array( 'Pgsql' ),
// IBM DB2
// 'IBM' => array( 'Ibm' ),
// Oracle
// 'OCI' => array( 'Oci' ),
);
$adapterName = strtoupper($adapterName);
switch ($adapterName) {
case 'PDO\MYSQL':
case 'PDO_MYSQL':
case 'MYSQLI':
$adapterName = 'MYSQL';
break;
case 'PDO_MSSQL':
case 'SQLSRV':
$adapterName = 'MSSQL';
break;
case 'PDO_IBM':
case 'DB2':
$adapterName = 'IBM';
break;
case 'PDO_OCI':
case 'ORACLE':
$adapterName = 'OCI';
break;
}
$schemaNames = $allSchemaNames[$adapterName];
$schemas = array();
foreach ($schemaNames as $schemaName) {
$className = __NAMESPACE__ . '\\Schema\\' . $schemaName;
if (call_user_func(array($className, 'isAvailable'))) {
$schemas[] = $schemaName;
}
}
return $schemas;
}
/** /**
* Load schema * Load schema
......
...@@ -22,33 +22,6 @@ class Mysql implements SchemaInterface ...@@ -22,33 +22,6 @@ class Mysql implements SchemaInterface
{ {
private $tablesInstalled = null; private $tablesInstalled = null;
/**
* Is this MySQL storage engine available?
*
* @param string $engineName
* @return bool True if available and enabled; false otherwise
*/
private static function hasStorageEngine($engineName)
{
$db = Db::get();
$allEngines = $db->fetchAssoc('SHOW ENGINES');
if (array_key_exists($engineName, $allEngines)) {
$support = $allEngines[$engineName]['Support'];
return $support == 'DEFAULT' || $support == 'YES';
}
return false;
}
/**
* Is this schema available?
*
* @return bool True if schema is available; false otherwise
*/
public static function isAvailable()
{
return self::hasStorageEngine('InnoDB');
}
/** /**
* Get the SQL to create Piwik tables * Get the SQL to create Piwik tables
* *
......
...@@ -14,13 +14,6 @@ namespace Piwik\Db; ...@@ -14,13 +14,6 @@ namespace Piwik\Db;
*/ */
interface SchemaInterface interface SchemaInterface
{ {
/**
* Is this schema available?
*
* @return bool True if schema is available; false otherwise
*/
public static function isAvailable();
/** /**
* Get the SQL to create a specific Piwik table * Get the SQL to create a specific Piwik table
* *
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter