LinksDeletionUpdate: Fix typos in column names

Bug: T137280
Change-Id: I78ee489f10e796d2b3fa39dcb4f65f0763860bf3
This commit is contained in:
Glaisher 2016-06-08 14:52:40 +05:00
parent 2e0cf64db7
commit 69c8de34ad

View file

@ -110,13 +110,13 @@ class LinksDeletionUpdate extends SqlDataUpdate implements EnqueueableDataUpdate
);
$this->batchDeleteByPK(
'langlinks',
[ 'il_from' => $id ],
[ 'il_from', 'll_lang' ],
[ 'll_from' => $id ],
[ 'll_from', 'll_lang' ],
$batchSize
);
$this->batchDeleteByPK(
'iwlinks',
[ 'il_from' => $id ],
[ 'iwl_from' => $id ],
[ 'iwl_from', 'iwl_prefix', 'iwl_title' ],
$batchSize
);