mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Linter
synced 2024-11-27 09:10:05 +00:00
Add index on linter.linter_cat
For queries that list all errors of a certain type. This patch needs to be applied manually, update.php won't work. Change-Id: I42abded9df3ef2ff242be2b16f4c57bafc03ae39
This commit is contained in:
parent
ec6f4722aa
commit
3d12f762e6
|
@ -11,3 +11,5 @@ CREATE TABLE /*_*/linter (
|
|||
|
||||
-- Query by page
|
||||
CREATE INDEX /*i*/linter_page ON /*_*/linter (linter_page);
|
||||
-- Query by category
|
||||
CREATE INDEX /*i*/linter_cat ON /*_*/linter (linter_cat);
|
||||
|
|
Loading…
Reference in a new issue