X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FpopulateRevisionLength.php;h=297bed242e1abc736c8317cf0ec5c11f1070db8a;hb=4dc3ac1c375b3d2eb6172dfef8fdebe71b8c5f43;hp=b73ac7f270da219b956756f6398a7a16f10ae023;hpb=2e040b99eda6c99cf472b3896f62d2f21315e808;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/populateRevisionLength.php b/maintenance/populateRevisionLength.php index b73ac7f270..297bed242e 100644 --- a/maintenance/populateRevisionLength.php +++ b/maintenance/populateRevisionLength.php @@ -33,7 +33,7 @@ require_once __DIR__ . '/Maintenance.php'; class PopulateRevisionLength extends LoggedUpdateMaintenance { public function __construct() { parent::__construct(); - $this->mDescription = "Populates the rev_len and ar_len fields"; + $this->addDescription( 'Populates the rev_len and ar_len fields' ); $this->setBatchSize( 200 ); } @@ -100,14 +100,14 @@ class PopulateRevisionLength extends LoggedUpdateMaintenance { __METHOD__ ); - $db->begin( __METHOD__ ); + $this->beginTransaction( $db, __METHOD__ ); # Go through and update rev_len from these rows. foreach ( $res as $row ) { if ( $this->upgradeRow( $row, $table, $idCol, $prefix ) ) { $count++; } } - $db->commit( __METHOD__ ); + $this->commitTransaction( $db, __METHOD__ ); $blockStart += $this->mBatchSize; $blockEnd += $this->mBatchSize;