From: Reedy Date: Mon, 17 Sep 2012 18:17:11 +0000 (+0100) Subject: (bug 40302) Lock user table with LOCK TABLES X-Git-Tag: 1.31.0-rc.0~22348^2 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=248ff9e925d6f425007a0d890b3eed09c2b63a21;p=lhc%2Fweb%2Fwiklou.git (bug 40302) Lock user table with LOCK TABLES Change-Id: I26905c29e004a4c7df82fd38aab908287daf193e --- diff --git a/maintenance/Maintenance.php b/maintenance/Maintenance.php index 69d113138a..4151723797 100644 --- a/maintenance/Maintenance.php +++ b/maintenance/Maintenance.php @@ -1068,7 +1068,7 @@ abstract class Maintenance { */ private function lockSearchindex( &$db ) { $write = array( 'searchindex' ); - $read = array( 'page', 'revision', 'text', 'interwiki', 'l10n_cache' ); + $read = array( 'page', 'revision', 'text', 'interwiki', 'l10n_cache', 'user' ); $db->lockTables( $read, $write, __CLASS__ . '::' . __METHOD__ ); }