summaryrefslogtreecommitdiff
path: root/maintenance/runBatchedQuery.php
diff options
context:
space:
mode:
Diffstat (limited to 'maintenance/runBatchedQuery.php')
-rw-r--r--maintenance/runBatchedQuery.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/maintenance/runBatchedQuery.php b/maintenance/runBatchedQuery.php
index 03c56aa9..dd3680c9 100644
--- a/maintenance/runBatchedQuery.php
+++ b/maintenance/runBatchedQuery.php
@@ -22,7 +22,7 @@
* @ingroup Maintenance
*/
-require_once( dirname(__FILE__) . '/Maintenance.php' );
+require_once( dirname( __FILE__ ) . '/Maintenance.php' );
class BatchedQueryRunner extends Maintenance {
public function __construct() {
@@ -35,7 +35,7 @@ class BatchedQueryRunner extends Maintenance {
public function execute() {
if ( !$this->hasArg() )
$this->error( "No query specified. Specify the query as a command line parameter.", true );
-
+
$query = $this->getArg();
$wait = $this->getOption( 'wait', 5 );
$n = 1;
@@ -43,7 +43,7 @@ class BatchedQueryRunner extends Maintenance {
do {
$this->output( "Batch $n: " );
$n++;
- $dbw->query( $query );
+ $dbw->query( $query, __METHOD__ );
$affected = $dbw->affectedRows();
$this->output( "$affected rows\n" );
wfWaitForSlaves( $wait );
@@ -57,4 +57,4 @@ class BatchedQueryRunner extends Maintenance {
$maintClass = "BatchedQueryRunner";
-require_once( DO_MAINTENANCE );
+require_once( RUN_MAINTENANCE_IF_MAIN );