From: Ilmari Karonen Date: Thu, 27 Nov 2008 21:22:21 +0000 (+0000) Subject: (bug 15892) kluge: disable use of temporary tables for parserTests until someone... X-Git-Tag: 1.31.0-rc.0~44185 X-Git-Url: https://git.cyclocoop.org/%28%28?a=commitdiff_plain;h=48730864ba6385fd4cff42f1e2804b716911e242;p=lhc%2Fweb%2Fwiklou.git (bug 15892) kluge: disable use of temporary tables for parserTests until someone can figure out a way to make them work again --- diff --git a/maintenance/parserTests.inc b/maintenance/parserTests.inc index 001aebf8ec..5c7ed47360 100644 --- a/maintenance/parserTests.inc +++ b/maintenance/parserTests.inc @@ -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; }