r84041 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r84040‎ | r84041 | r84042 >
Date:18:25, 15 March 2011
Author:aaron
Status:ok
Tags:
Comment:
Removed FORCE INDEX statements; more harmful than the possible modest filesorts (see r83761)
Modified paths:
  • /trunk/extensions/FlaggedRevs/specialpages/PendingChanges_body.php (modified) (history)

Diff [purge]

Index: trunk/extensions/FlaggedRevs/specialpages/PendingChanges_body.php
@@ -343,7 +343,6 @@
344344 $conds[] = 'page_id = fp_page_id';
345345 $conds[] = 'rev_id = fp_stable'; // PK
346346 $conds[] = 'fp_pending_since IS NOT NULL';
347 - $useIndex = array( 'flaggedpages' => 'fp_pending_since', 'page' => 'PRIMARY' );
348347 # Filter by pages configured to be stable
349348 if ( $this->stable ) {
350349 $tables[] = 'flaggedpage_config';
@@ -355,7 +354,6 @@
356355 $tables[] = 'categorylinks';
357356 $conds[] = 'cl_from = fp_page_id';
358357 $conds['cl_to'] = $this->category;
359 - $useIndex['categorylinks'] = 'cl_from';
360358 }
361359 $this->mIndexField = 'fp_pending_since';
362360 # Show outdated version for a specific review level
@@ -367,8 +365,6 @@
368366 $conds[] = 'page_id = fpp_page_id';
369367 $conds[] = 'rev_id = fpp_rev_id'; // PK
370368 $conds[] = 'fpp_pending_since IS NOT NULL';
371 - $useIndex = array(
372 - 'flaggedpage_pending' => 'fpp_quality_pending', 'page' => 'PRIMARY' );
373369 # Filter by review level
374370 $conds['fpp_quality'] = $this->level;
375371 # Filter by pages configured to be stable
@@ -382,7 +378,6 @@
383379 $tables[] = 'categorylinks';
384380 $conds[] = 'cl_from = fpp_page_id';
385381 $conds['cl_to'] = $this->category;
386 - $useIndex['categorylinks'] = 'cl_from';
387382 }
388383 $this->mIndexField = 'fpp_pending_since';
389384 }
@@ -407,8 +402,7 @@
408403 return array(
409404 'tables' => $tables,
410405 'fields' => $fields,
411 - 'conds' => $conds,
412 - 'options' => array( 'USE INDEX' => $useIndex )
 406+ 'conds' => $conds
413407 );
414408 }
415409

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r83761....... .................. ......midom15:05, 12 March 2011

Status & tagging log