Index: trunk/phase3/maintenance/cleanupTable.inc |
— | — | @@ -101,7 +101,8 @@ |
102 | 102 | } |
103 | 103 | |
104 | 104 | $table = $params['table']; |
105 | | - $count = $dbr->selectField( $table, 'count(*)', $params['conds'], __METHOD__ ); |
| 105 | + // count(*) would melt the DB for huge tables, we can estimate here |
| 106 | + $dbr->estimateRowCount( $table, '*', '', __METHOD__ ); |
106 | 107 | $this->init( $count, $table ); |
107 | 108 | $this->output( "Processing $table...\n" ); |
108 | 109 | |