Changeset 9022

Show
Ignore:
Timestamp:
09/28/08 17:41:12 (2 months ago)
Author:
ryan
Message:

Drop USE INDEX

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-admin/includes/template.php

    r9014 r9022  
    15561556            ORDER BY comment_date_gmt DESC LIMIT $start, $num"); 
    15571557    } else { 
    1558         $comments = $wpdb->get_results( "SELECT SQL_CALC_FOUND_ROWS * FROM $wpdb->comments USE INDEX (comment_date_gmt) WHERE $approved ORDER BY comment_date_gmt DESC LIMIT $start, $num" ); 
     1558        $comments = $wpdb->get_results( "SELECT SQL_CALC_FOUND_ROWS * FROM $wpdb->comments WHERE $approved ORDER BY comment_date_gmt DESC LIMIT $start, $num" ); 
    15591559    } 
    15601560