From af711e6082bf0081a466ef33e87c8cc6a62d02c5 Mon Sep 17 00:00:00 2001 From: webchick Date: Fri, 30 Aug 2013 23:34:34 -0700 Subject: [PATCH] Issue #2062399 by kattekrab: Add Percona Server to list of supported MySQL alternative databases. --- core/INSTALL.txt | 2 ++ core/lib/Drupal/Core/Database/Driver/mysql/Install/Tasks.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/core/INSTALL.txt b/core/INSTALL.txt index a5c41ce2ccc..b753f3ad69e 100644 --- a/core/INSTALL.txt +++ b/core/INSTALL.txt @@ -23,6 +23,8 @@ Drupal requires: - MySQL 5.0.15 (or greater) (http://www.mysql.com/). - MariaDB 5.1.44 (or greater) (http://mariadb.org/). MariaDB is a fully compatible drop-in replacement for MySQL. + - Percona Server 5.1.70 (or greater) (http://www.percona.com/). Percona + Server is a backwards-compatible replacement for MySQL. - PostgreSQL 8.3 (or greater) (http://www.postgresql.org/). - SQLite 3.4.2 (or greater) (http://www.sqlite.org/). diff --git a/core/lib/Drupal/Core/Database/Driver/mysql/Install/Tasks.php b/core/lib/Drupal/Core/Database/Driver/mysql/Install/Tasks.php index e4ecd9954b8..1d048831bab 100644 --- a/core/lib/Drupal/Core/Database/Driver/mysql/Install/Tasks.php +++ b/core/lib/Drupal/Core/Database/Driver/mysql/Install/Tasks.php @@ -27,7 +27,7 @@ class Tasks extends InstallTasks { * Returns a human-readable name string for MySQL and equivalent databases. */ public function name() { - return t('MySQL, MariaDB, or equivalent'); + return t('MySQL, MariaDB, Percona Server, or equivalent'); } /**