Index: branches/wmf/1.17wmf1/maintenance/cleanupTable.inc |
— | — | @@ -102,7 +102,7 @@ |
103 | 103 | |
104 | 104 | $table = $params['table']; |
105 | 105 | // count(*) would melt the DB for huge tables, we can estimate here |
106 | | - $dbr->estimateRowCount( $table, '*', '', __METHOD__ ); |
| 106 | + $count = $dbr->estimateRowCount( $table, '*', '', __METHOD__ ); |
107 | 107 | $this->init( $count, $table ); |
108 | 108 | $this->output( "Processing $table...\n" ); |
109 | 109 | |
Property changes on: branches/wmf/1.17wmf1/maintenance/cleanupTable.inc |
___________________________________________________________________ |
Modified: svn:mergeinfo |
110 | 110 | Merged /trunk/phase3/maintenance/cleanupTable.inc:r91765 |