]> scripts.mit.edu Git - autoinstallsdev/mediawiki.git/blobdiff - maintenance/runBatchedQuery.php
MediaWiki 1.17.0
[autoinstallsdev/mediawiki.git] / maintenance / runBatchedQuery.php
index 03c56aa94c796102e065aa7b5421e41ade6fa8bd..dd3680c983635a430dced36dcb1bcc353eb17b75 100644 (file)
@@ -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 );