Index: trunk/phase3/maintenance/parserTests.inc |
— | — | @@ -622,7 +622,9 @@ |
623 | 623 | $this->oldTablePrefix = $wgDBprefix; |
624 | 624 | |
625 | 625 | # CREATE TEMPORARY TABLE breaks if there is more than one server |
626 | | - if ( wfGetLB()->getServerCount() != 1 ) { |
| 626 | + # FIXME: r40209 makes temporary tables break even with just one server |
| 627 | + # FIXME: (bug 15892); disabling the feature entirely as a temporary fix |
| 628 | + if ( true || wfGetLB()->getServerCount() != 1 ) { |
627 | 629 | $this->useTemporaryTables = false; |
628 | 630 | } |
629 | 631 | |