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
11 lines
313 B
SQL
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);
|