mediawiki-extensions-Linter/sql/sqlite/patch-linter-add-namespace.sql
sbailey 4544a9c7cc Add namespace column and new index to Linter table - part 1
* This patch contains the code needed to update the database with
   the addition Linter table column linter_namespace <int/null>
   and add an index with category and namespace for faster
   selection of linter records.

Bug: T299612
Change-Id: I05da381b9a74294b44d4aef968614277d601a176
2022-01-28 20:19:38 +00:00

18 lines
1.3 KiB
SQL

-- This file is automatically generated using maintenance/generateSchemaChangeSql.php.
-- Source: abstractSchemaChanges/patch-linter-add-namespace.json
-- Do not modify this file directly.
-- See https://www.mediawiki.org/wiki/Manual:Schema_changes
DROP INDEX linter_page;
DROP INDEX linter_cat_page_position;
CREATE TEMPORARY TABLE /*_*/__temp__linter AS
SELECT linter_id, linter_page, linter_cat, linter_start, linter_end, linter_params
FROM /*_*/linter;
DROP TABLE /*_*/linter;
CREATE TABLE /*_*/linter ( linter_id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, linter_page INTEGER UNSIGNED NOT NULL, linter_cat INTEGER UNSIGNED NOT NULL, linter_start INTEGER UNSIGNED NOT NULL, linter_end INTEGER UNSIGNED NOT NULL, linter_params BLOB DEFAULT NULL, linter_namespace INTEGER DEFAULT NULL );
INSERT INTO /*_*/linter ( linter_id, linter_page, linter_cat, linter_start, linter_end, linter_params )
SELECT linter_id, linter_page, linter_cat, linter_start, linter_end, linter_params
FROM /*_*/__temp__linter;
DROP TABLE /*_*/__temp__linter;
CREATE INDEX linter_page ON /*_*/linter (linter_page);
CREATE UNIQUE INDEX linter_cat_page_position ON /*_*/linter ( linter_cat, linter_page, linter_start, linter_end );
CREATE INDEX linter_cat_namespace ON /*_*/linter (linter_cat, linter_namespace);