(bug 15892) kluge: disable use of temporary tables for parserTests until someone...
authorIlmari Karonen <vyznev@users.mediawiki.org>
Thu, 27 Nov 2008 21:22:21 +0000 (21:22 +0000)
committerIlmari Karonen <vyznev@users.mediawiki.org>
Thu, 27 Nov 2008 21:22:21 +0000 (21:22 +0000)
maintenance/parserTests.inc

index 001aebf..5c7ed47 100644 (file)
@@ -622,7 +622,9 @@ class ParserTest {
                $this->oldTablePrefix = $wgDBprefix;
 
                # CREATE TEMPORARY TABLE breaks if there is more than one server
-               if ( wfGetLB()->getServerCount() != 1 ) {
+               # FIXME: r40209 makes temporary tables break even with just one server
+               # FIXME: (bug 15892); disabling the feature entirely as a temporary fix
+               if ( true || wfGetLB()->getServerCount() != 1 ) {
                        $this->useTemporaryTables = false;
                }