wiki.techinc.nl/maintenance/archives/patch-categorylinksindex.sql
umherirrender 271da88127 Some bugzilla.wikimedia.org -> phabricator.wikimedia.org changes
Changed some old bugzilla links to new phabricator links in comments,
test data and error message. This reduces the need for redirects from
old bugzilla to new phabricator from our source code.

Change-Id: Id98278e26ce31656295a23f3cadb536859c4caa5
2015-09-24 17:17:25 +02:00

11 lines
313 B
SQL

--
-- patch-categorylinksindex.sql
--
-- Per task T12280 / https://phabricator.wikimedia.org/T12280
--
-- Improve enum continuation performance of the what pages belong to a category query
--
ALTER TABLE /*$wgDBprefix*/categorylinks
DROP INDEX cl_sortkey,
ADD INDEX cl_sortkey(cl_to, cl_sortkey, cl_from);