r63212 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r63211‎ | r63212 | r63213 >
Date:18:13, 3 March 2010
Author:maxsem
Status:ok
Tags:
Comment:
Merged r52672 into new-installer
Modified paths:
  • /branches/new-installer/phase3/includes/installer/MysqlInstaller.php (modified) (history)

Diff [purge]

Index: branches/new-installer/phase3/includes/installer/MysqlInstaller.php
@@ -183,7 +183,9 @@
184184 $engines = array();
185185 $res = $conn->query( 'SHOW ENGINES' );
186186 foreach ( $res as $row ) {
187 - $engines[] = $row->Engine;
 187+ if ( $row->Support == 'YES' || $row->Support == 'DEFAULT' ) {
 188+ $engines[] = $row->Engine;
 189+ }
188190 }
189191 $engines = array_intersect( $this->supportedEngines, $engines );
190192 return $engines;

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r52672(bug 11242) Check for MySQL storage engines during installation doesn't check...demon01:00, 2 July 2009

Status & tagging log