Merge "CologneBlue rewrite: rewrite bottomLinks()"
[lhc/web/wiklou.git] / includes / installer / PostgresUpdater.php
1 <?php
2 /**
3 * PostgreSQL-specific updater.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup Deployment
22 */
23
24 /**
25 * Class for handling updates to Postgres databases.
26 *
27 * @ingroup Deployment
28 * @since 1.17
29 */
30
31 class PostgresUpdater extends DatabaseUpdater {
32
33 /**
34 * @var DatabasePostgres
35 */
36 protected $db;
37
38 /**
39 * @todo FIXME: Postgres should use sequential updates like Mysql, Sqlite
40 * and everybody else. It never got refactored like it should've.
41 * @return array
42 */
43 protected function getCoreUpdateList() {
44 return array(
45 # rename tables 1.7.3
46 # r15791 Change reserved word table names "user" and "text"
47 array( 'renameTable', 'user', 'mwuser' ),
48 array( 'renameTable', 'text', 'pagecontent' ),
49 array( 'renameIndex', 'mwuser', 'user_pkey', 'mwuser_pkey'),
50 array( 'renameIndex', 'mwuser', 'user_user_name_key', 'mwuser_user_name_key' ),
51 array( 'renameIndex', 'pagecontent','text_pkey', 'pagecontent_pkey' ),
52
53 # renamed sequences
54 array( 'renameSequence', 'ipblocks_ipb_id_val', 'ipblocks_ipb_id_seq' ),
55 array( 'renameSequence', 'rev_rev_id_val', 'revision_rev_id_seq' ),
56 array( 'renameSequence', 'text_old_id_val', 'text_old_id_seq' ),
57 array( 'renameSequence', 'rc_rc_id_seq', 'recentchanges_rc_id_seq' ),
58 array( 'renameSequence', 'log_log_id_seq', 'logging_log_id_seq' ),
59 array( 'renameSequence', 'pr_id_val', 'page_restrictions_pr_id_seq' ),
60 array( 'renameSequence', 'us_id_seq', 'uploadstash_us_id_seq' ),
61
62 # since r58263
63 array( 'renameSequence', 'category_id_seq', 'category_cat_id_seq'),
64
65 # new sequences if not renamed above
66 array( 'addSequence', 'logging', false, 'logging_log_id_seq' ),
67 array( 'addSequence', 'page_restrictions', false, 'page_restrictions_pr_id_seq' ),
68 array( 'addSequence', 'filearchive', 'fa_id', 'filearchive_fa_id_seq' ),
69
70 # new tables
71 array( 'addTable', 'category', 'patch-category.sql' ),
72 array( 'addTable', 'page', 'patch-page.sql' ),
73 array( 'addTable', 'querycachetwo', 'patch-querycachetwo.sql' ),
74 array( 'addTable', 'page_props', 'patch-page_props.sql' ),
75 array( 'addTable', 'page_restrictions', 'patch-page_restrictions.sql' ),
76 array( 'addTable', 'profiling', 'patch-profiling.sql' ),
77 array( 'addTable', 'protected_titles', 'patch-protected_titles.sql' ),
78 array( 'addTable', 'redirect', 'patch-redirect.sql' ),
79 array( 'addTable', 'updatelog', 'patch-updatelog.sql' ),
80 array( 'addTable', 'change_tag', 'patch-change_tag.sql' ),
81 array( 'addTable', 'tag_summary', 'patch-tag_summary.sql' ),
82 array( 'addTable', 'valid_tag', 'patch-valid_tag.sql' ),
83 array( 'addTable', 'user_properties', 'patch-user_properties.sql' ),
84 array( 'addTable', 'log_search', 'patch-log_search.sql' ),
85 array( 'addTable', 'l10n_cache', 'patch-l10n_cache.sql' ),
86 array( 'addTable', 'iwlinks', 'patch-iwlinks.sql' ),
87 array( 'addTable', 'msg_resource', 'patch-msg_resource.sql' ),
88 array( 'addTable', 'msg_resource_links','patch-msg_resource_links.sql' ),
89 array( 'addTable', 'module_deps', 'patch-module_deps.sql' ),
90 array( 'addTable', 'uploadstash', 'patch-uploadstash.sql' ),
91 array( 'addTable', 'user_former_groups','patch-user_former_groups.sql' ),
92 array( 'addTable', 'external_user', 'patch-external_user.sql' ),
93
94 # Needed before new field
95 array( 'convertArchive2' ),
96
97 # new fields
98 array( 'addPgField', 'updatelog', 'ul_value', 'TEXT' ),
99 array( 'addPgField', 'archive', 'ar_deleted', 'SMALLINT NOT NULL DEFAULT 0' ),
100 array( 'addPgField', 'archive', 'ar_len', 'INTEGER' ),
101 array( 'addPgField', 'archive', 'ar_page_id', 'INTEGER' ),
102 array( 'addPgField', 'archive', 'ar_parent_id', 'INTEGER' ),
103 array( 'addPgField', 'archive', 'ar_content_model', 'TEXT' ),
104 array( 'addPgField', 'archive', 'ar_content_format', 'TEXT' ),
105 array( 'addPgField', 'categorylinks', 'cl_sortkey_prefix', "TEXT NOT NULL DEFAULT ''"),
106 array( 'addPgField', 'categorylinks', 'cl_collation', "TEXT NOT NULL DEFAULT 0"),
107 array( 'addPgField', 'categorylinks', 'cl_type', "TEXT NOT NULL DEFAULT 'page'"),
108 array( 'addPgField', 'image', 'img_sha1', "TEXT NOT NULL DEFAULT ''" ),
109 array( 'addPgField', 'ipblocks', 'ipb_allow_usertalk', 'SMALLINT NOT NULL DEFAULT 0' ),
110 array( 'addPgField', 'ipblocks', 'ipb_anon_only', 'SMALLINT NOT NULL DEFAULT 0' ),
111 array( 'addPgField', 'ipblocks', 'ipb_by_text', "TEXT NOT NULL DEFAULT ''" ),
112 array( 'addPgField', 'ipblocks', 'ipb_block_email', 'SMALLINT NOT NULL DEFAULT 0' ),
113 array( 'addPgField', 'ipblocks', 'ipb_create_account', 'SMALLINT NOT NULL DEFAULT 1' ),
114 array( 'addPgField', 'ipblocks', 'ipb_deleted', 'SMALLINT NOT NULL DEFAULT 0' ),
115 array( 'addPgField', 'ipblocks', 'ipb_enable_autoblock', 'SMALLINT NOT NULL DEFAULT 1' ),
116 array( 'addPgField', 'ipblocks', 'ipb_parent_block_id', 'INTEGER DEFAULT NULL REFERENCES ipblocks(ipb_id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED' ),
117 array( 'addPgField', 'filearchive', 'fa_deleted', 'SMALLINT NOT NULL DEFAULT 0' ),
118 array( 'addPgField', 'filearchive', 'fa_sha1', "TEXT NOT NULL DEFAULT ''" ),
119 array( 'addPgField', 'logging', 'log_deleted', 'SMALLINT NOT NULL DEFAULT 0' ),
120 array( 'addPgField', 'logging', 'log_id', "INTEGER NOT NULL PRIMARY KEY DEFAULT nextval('logging_log_id_seq')" ),
121 array( 'addPgField', 'logging', 'log_params', 'TEXT' ),
122 array( 'addPgField', 'mwuser', 'user_editcount', 'INTEGER' ),
123 array( 'addPgField', 'mwuser', 'user_newpass_time', 'TIMESTAMPTZ' ),
124 array( 'addPgField', 'oldimage', 'oi_deleted', 'SMALLINT NOT NULL DEFAULT 0' ),
125 array( 'addPgField', 'oldimage', 'oi_major_mime', "TEXT NOT NULL DEFAULT 'unknown'" ),
126 array( 'addPgField', 'oldimage', 'oi_media_type', 'TEXT' ),
127 array( 'addPgField', 'oldimage', 'oi_metadata', "BYTEA NOT NULL DEFAULT ''" ),
128 array( 'addPgField', 'oldimage', 'oi_minor_mime', "TEXT NOT NULL DEFAULT 'unknown'" ),
129 array( 'addPgField', 'oldimage', 'oi_sha1', "TEXT NOT NULL DEFAULT ''" ),
130 array( 'addPgField', 'page', 'page_content_model', 'TEXT' ),
131 array( 'addPgField', 'page_restrictions', 'pr_id', "INTEGER NOT NULL UNIQUE DEFAULT nextval('page_restrictions_pr_id_seq')" ),
132 array( 'addPgField', 'profiling', 'pf_memory', 'NUMERIC(18,10) NOT NULL DEFAULT 0' ),
133 array( 'addPgField', 'recentchanges', 'rc_deleted', 'SMALLINT NOT NULL DEFAULT 0' ),
134 array( 'addPgField', 'recentchanges', 'rc_log_action', 'TEXT' ),
135 array( 'addPgField', 'recentchanges', 'rc_log_type', 'TEXT' ),
136 array( 'addPgField', 'recentchanges', 'rc_logid', 'INTEGER NOT NULL DEFAULT 0' ),
137 array( 'addPgField', 'recentchanges', 'rc_new_len', 'INTEGER' ),
138 array( 'addPgField', 'recentchanges', 'rc_old_len', 'INTEGER' ),
139 array( 'addPgField', 'recentchanges', 'rc_params', 'TEXT' ),
140 array( 'addPgField', 'redirect', 'rd_interwiki', 'TEXT NULL' ),
141 array( 'addPgField', 'redirect', 'rd_fragment', 'TEXT NULL' ),
142 array( 'addPgField', 'revision', 'rev_deleted', 'SMALLINT NOT NULL DEFAULT 0' ),
143 array( 'addPgField', 'revision', 'rev_len', 'INTEGER' ),
144 array( 'addPgField', 'revision', 'rev_parent_id', 'INTEGER DEFAULT NULL' ),
145 array( 'addPgField', 'revision', 'rev_content_model', 'TEXT' ),
146 array( 'addPgField', 'revision', 'rev_content_format', 'TEXT' ),
147 array( 'addPgField', 'site_stats', 'ss_active_users', "INTEGER DEFAULT '-1'" ),
148 array( 'addPgField', 'user_newtalk', 'user_last_timestamp', 'TIMESTAMPTZ' ),
149 array( 'addPgField', 'logging', 'log_user_text', "TEXT NOT NULL DEFAULT ''" ),
150 array( 'addPgField', 'logging', 'log_page', 'INTEGER' ),
151 array( 'addPgField', 'interwiki', 'iw_api', "TEXT NOT NULL DEFAULT ''"),
152 array( 'addPgField', 'interwiki', 'iw_wikiid', "TEXT NOT NULL DEFAULT ''"),
153 array( 'addPgField', 'revision', 'rev_sha1', "TEXT NOT NULL DEFAULT ''" ),
154 array( 'addPgField', 'archive', 'ar_sha1', "TEXT NOT NULL DEFAULT ''" ),
155 array( 'addPgField', 'uploadstash', 'us_chunk_inx', "INTEGER NULL" ),
156 array( 'addPgField', 'job', 'job_timestamp', "TIMESTAMPTZ" ),
157 array( 'addPgField', 'job', 'job_random', "INTEGER NOT NULL DEFAULT 0" ),
158 array( 'addPgField', 'job', 'job_token', "TEXT NOT NULL DEFAULT ''" ),
159 array( 'addPgField', 'job', 'job_token_timestamp', "TIMESTAMPTZ" ),
160 array( 'addPgField', 'job', 'job_sha1', "TEXT NOT NULL DEFAULT ''" ),
161
162 # type changes
163 array( 'changeField', 'archive', 'ar_deleted', 'smallint', '' ),
164 array( 'changeField', 'archive', 'ar_minor_edit', 'smallint', 'ar_minor_edit::smallint DEFAULT 0' ),
165 array( 'changeField', 'filearchive', 'fa_deleted', 'smallint', '' ),
166 array( 'changeField', 'filearchive', 'fa_height', 'integer', '' ),
167 array( 'changeField', 'filearchive', 'fa_metadata', 'bytea', "decode(fa_metadata,'escape')" ),
168 array( 'changeField', 'filearchive', 'fa_size', 'integer', '' ),
169 array( 'changeField', 'filearchive', 'fa_width', 'integer', '' ),
170 array( 'changeField', 'filearchive', 'fa_storage_group', 'text', '' ),
171 array( 'changeField', 'filearchive', 'fa_storage_key', 'text', '' ),
172 array( 'changeField', 'image', 'img_metadata', 'bytea', "decode(img_metadata,'escape')" ),
173 array( 'changeField', 'image', 'img_size', 'integer', '' ),
174 array( 'changeField', 'image', 'img_width', 'integer', '' ),
175 array( 'changeField', 'image', 'img_height', 'integer', '' ),
176 array( 'changeField', 'interwiki', 'iw_local', 'smallint', 'iw_local::smallint' ),
177 array( 'changeField', 'interwiki', 'iw_trans', 'smallint', 'iw_trans::smallint DEFAULT 0' ),
178 array( 'changeField', 'ipblocks', 'ipb_auto', 'smallint', 'ipb_auto::smallint DEFAULT 0' ),
179 array( 'changeField', 'ipblocks', 'ipb_anon_only', 'smallint', "CASE WHEN ipb_anon_only=' ' THEN 0 ELSE ipb_anon_only::smallint END DEFAULT 0" ),
180 array( 'changeField', 'ipblocks', 'ipb_create_account', 'smallint', "CASE WHEN ipb_create_account=' ' THEN 0 ELSE ipb_create_account::smallint END DEFAULT 1" ),
181 array( 'changeField', 'ipblocks', 'ipb_enable_autoblock', 'smallint', "CASE WHEN ipb_enable_autoblock=' ' THEN 0 ELSE ipb_enable_autoblock::smallint END DEFAULT 1" ),
182 array( 'changeField', 'ipblocks', 'ipb_block_email', 'smallint', "CASE WHEN ipb_block_email=' ' THEN 0 ELSE ipb_block_email::smallint END DEFAULT 0" ),
183 array( 'changeField', 'ipblocks', 'ipb_address', 'text', 'ipb_address::text' ),
184 array( 'changeField', 'ipblocks', 'ipb_deleted', 'smallint', 'ipb_deleted::smallint DEFAULT 0' ),
185 array( 'changeField', 'mwuser', 'user_token', 'text', '' ),
186 array( 'changeField', 'mwuser', 'user_email_token', 'text', '' ),
187 array( 'changeField', 'objectcache', 'keyname', 'text', '' ),
188 array( 'changeField', 'oldimage', 'oi_height', 'integer', '' ),
189 array( 'changeField', 'oldimage', 'oi_metadata', 'bytea', "decode(img_metadata,'escape')" ),
190 array( 'changeField', 'oldimage', 'oi_size', 'integer', '' ),
191 array( 'changeField', 'oldimage', 'oi_width', 'integer', '' ),
192 array( 'changeField', 'page', 'page_is_redirect', 'smallint', 'page_is_redirect::smallint DEFAULT 0' ),
193 array( 'changeField', 'page', 'page_is_new', 'smallint', 'page_is_new::smallint DEFAULT 0' ),
194 array( 'changeField', 'querycache', 'qc_value', 'integer', '' ),
195 array( 'changeField', 'querycachetwo', 'qcc_value', 'integer', '' ),
196 array( 'changeField', 'recentchanges', 'rc_bot', 'smallint', 'rc_bot::smallint DEFAULT 0' ),
197 array( 'changeField', 'recentchanges', 'rc_deleted', 'smallint', '' ),
198 array( 'changeField', 'recentchanges', 'rc_minor', 'smallint', 'rc_minor::smallint DEFAULT 0' ),
199 array( 'changeField', 'recentchanges', 'rc_new', 'smallint', 'rc_new::smallint DEFAULT 0' ),
200 array( 'changeField', 'recentchanges', 'rc_type', 'smallint', 'rc_type::smallint DEFAULT 0' ),
201 array( 'changeField', 'recentchanges', 'rc_patrolled', 'smallint', 'rc_patrolled::smallint DEFAULT 0' ),
202 array( 'changeField', 'revision', 'rev_deleted', 'smallint', 'rev_deleted::smallint DEFAULT 0' ),
203 array( 'changeField', 'revision', 'rev_minor_edit', 'smallint', 'rev_minor_edit::smallint DEFAULT 0' ),
204 array( 'changeField', 'templatelinks', 'tl_namespace', 'smallint', 'tl_namespace::smallint' ),
205 array( 'changeField', 'user_newtalk', 'user_ip', 'text', 'host(user_ip)' ),
206 array( 'changeField', 'uploadstash', 'us_image_bits', 'smallint', '' ),
207
208 # null changes
209 array( 'changeNullableField', 'oldimage', 'oi_bits', 'NULL' ),
210 array( 'changeNullableField', 'oldimage', 'oi_timestamp', 'NULL' ),
211 array( 'changeNullableField', 'oldimage', 'oi_major_mime', 'NULL' ),
212 array( 'changeNullableField', 'oldimage', 'oi_minor_mime', 'NULL' ),
213 array( 'changeNullableField', 'image', 'img_metadata', 'NOT NULL'),
214 array( 'changeNullableField', 'filearchive', 'fa_metadata', 'NOT NULL'),
215 array( 'changeNullableField', 'recentchanges', 'rc_cur_id', 'NULL' ),
216
217 array( 'checkOiDeleted' ),
218
219 # New indexes
220 array( 'addPgIndex', 'archive', 'archive_user_text', '(ar_user_text)' ),
221 array( 'addPgIndex', 'image', 'img_sha1', '(img_sha1)' ),
222 array( 'addPgIndex', 'ipblocks', 'ipb_parent_block_id', '(ipb_parent_block_id)' ),
223 array( 'addPgIndex', 'oldimage', 'oi_sha1', '(oi_sha1)' ),
224 array( 'addPgIndex', 'page', 'page_mediawiki_title', '(page_title) WHERE page_namespace = 8' ),
225 array( 'addPgIndex', 'pagelinks', 'pagelinks_title', '(pl_title)' ),
226 array( 'addPgIndex', 'revision', 'rev_text_id_idx', '(rev_text_id)' ),
227 array( 'addPgIndex', 'recentchanges', 'rc_timestamp_bot', '(rc_timestamp) WHERE rc_bot = 0' ),
228 array( 'addPgIndex', 'templatelinks', 'templatelinks_from', '(tl_from)' ),
229 array( 'addPgIndex', 'watchlist', 'wl_user', '(wl_user)' ),
230 array( 'addPgIndex', 'logging', 'logging_user_type_time', '(log_user, log_type, log_timestamp)' ),
231 array( 'addPgIndex', 'logging', 'logging_page_id_time', '(log_page,log_timestamp)' ),
232 array( 'addPgIndex', 'iwlinks', 'iwl_prefix_title_from', '(iwl_prefix, iwl_title, iwl_from)' ),
233 array( 'addPgIndex', 'job', 'job_timestamp_idx', '(job_timestamp)' ),
234 array( 'addPgIndex', 'job', 'job_sha1', '(job_sha1)' ),
235 array( 'addPgIndex', 'job', 'job_cmd_token', '(job_cmd, job_token, job_random)' ),
236 array( 'addPgIndex', 'filearchive', 'fa_sha1', '(fa_sha1)' ),
237
238 array( 'checkIndex', 'pagelink_unique', array(
239 array('pl_from', 'int4_ops', 'btree', 0),
240 array('pl_namespace', 'int2_ops', 'btree', 0),
241 array('pl_title', 'text_ops', 'btree', 0),
242 ),
243 'CREATE UNIQUE INDEX pagelink_unique ON pagelinks (pl_from,pl_namespace,pl_title)' ),
244 array( 'checkIndex', 'cl_sortkey', array(
245 array('cl_to', 'text_ops', 'btree', 0),
246 array('cl_sortkey', 'text_ops', 'btree', 0),
247 array('cl_from', 'int4_ops', 'btree', 0),
248 ),
249 'CREATE INDEX cl_sortkey ON "categorylinks" USING "btree" ("cl_to", "cl_sortkey", "cl_from")' ),
250 array( 'checkIndex', 'logging_times', array(
251 array('log_timestamp', 'timestamptz_ops', 'btree', 0),
252 ),
253 'CREATE INDEX "logging_times" ON "logging" USING "btree" ("log_timestamp")' ),
254 array( 'dropIndex', 'oldimage', 'oi_name' ),
255 array( 'checkIndex', 'oi_name_archive_name', array(
256 array('oi_name', 'text_ops', 'btree', 0),
257 array('oi_archive_name', 'text_ops', 'btree', 0),
258 ),
259 'CREATE INDEX "oi_name_archive_name" ON "oldimage" USING "btree" ("oi_name", "oi_archive_name")' ),
260 array( 'checkIndex', 'oi_name_timestamp', array(
261 array('oi_name', 'text_ops', 'btree', 0),
262 array('oi_timestamp', 'timestamptz_ops', 'btree', 0),
263 ),
264 'CREATE INDEX "oi_name_timestamp" ON "oldimage" USING "btree" ("oi_name", "oi_timestamp")' ),
265 array( 'checkIndex', 'page_main_title', array(
266 array('page_title', 'text_pattern_ops', 'btree', 0),
267 ),
268 'CREATE INDEX "page_main_title" ON "page" USING "btree" ("page_title" "text_pattern_ops") WHERE ("page_namespace" = 0)' ),
269 array( 'checkIndex', 'page_mediawiki_title', array(
270 array('page_title', 'text_pattern_ops', 'btree', 0),
271 ),
272 'CREATE INDEX "page_mediawiki_title" ON "page" USING "btree" ("page_title" "text_pattern_ops") WHERE ("page_namespace" = 8)' ),
273 array( 'checkIndex', 'page_project_title', array(
274 array('page_title', 'text_pattern_ops', 'btree', 0),
275 ),
276 'CREATE INDEX "page_project_title" ON "page" USING "btree" ("page_title" "text_pattern_ops") WHERE ("page_namespace" = 4)' ),
277 array( 'checkIndex', 'page_talk_title', array(
278 array('page_title', 'text_pattern_ops', 'btree', 0),
279 ),
280 'CREATE INDEX "page_talk_title" ON "page" USING "btree" ("page_title" "text_pattern_ops") WHERE ("page_namespace" = 1)' ),
281 array( 'checkIndex', 'page_user_title', array(
282 array('page_title', 'text_pattern_ops', 'btree', 0),
283 ),
284 'CREATE INDEX "page_user_title" ON "page" USING "btree" ("page_title" "text_pattern_ops") WHERE ("page_namespace" = 2)' ),
285 array( 'checkIndex', 'page_utalk_title', array(
286 array('page_title', 'text_pattern_ops', 'btree', 0),
287 ),
288 'CREATE INDEX "page_utalk_title" ON "page" USING "btree" ("page_title" "text_pattern_ops") WHERE ("page_namespace" = 3)' ),
289 array( 'checkIndex', 'ts2_page_text', array(
290 array('textvector', 'tsvector_ops', 'gist', 0),
291 ),
292 'CREATE INDEX "ts2_page_text" ON "pagecontent" USING "gist" ("textvector")' ),
293 array( 'checkIndex', 'ts2_page_title', array(
294 array('titlevector', 'tsvector_ops', 'gist', 0),
295 ),
296 'CREATE INDEX "ts2_page_title" ON "page" USING "gist" ("titlevector")' ),
297
298 array( 'checkOiNameConstraint' ),
299 array( 'checkPageDeletedTrigger' ),
300 array( 'checkRevUserFkey' ),
301 array( 'dropIndex', 'ipblocks', 'ipb_address'),
302 array( 'checkIndex', 'ipb_address_unique', array(
303 array('ipb_address', 'text_ops', 'btree', 0),
304 array('ipb_user', 'int4_ops', 'btree', 0),
305 array('ipb_auto', 'int2_ops', 'btree', 0),
306 array('ipb_anon_only', 'int2_ops', 'btree', 0),
307 ),
308 'CREATE UNIQUE INDEX ipb_address_unique ON ipblocks (ipb_address,ipb_user,ipb_auto,ipb_anon_only)' ),
309
310 array( 'checkIwlPrefix' ),
311
312 # All FK columns should be deferred
313 array( 'changeFkeyDeferrable', 'archive', 'ar_user', 'mwuser(user_id) ON DELETE SET NULL' ),
314 array( 'changeFkeyDeferrable', 'categorylinks', 'cl_from', 'page(page_id) ON DELETE CASCADE' ),
315 array( 'changeFkeyDeferrable', 'externallinks', 'el_from', 'page(page_id) ON DELETE CASCADE' ),
316 array( 'changeFkeyDeferrable', 'filearchive', 'fa_deleted_user', 'mwuser(user_id) ON DELETE SET NULL' ),
317 array( 'changeFkeyDeferrable', 'filearchive', 'fa_user', 'mwuser(user_id) ON DELETE SET NULL' ),
318 array( 'changeFkeyDeferrable', 'image', 'img_user', 'mwuser(user_id) ON DELETE SET NULL' ),
319 array( 'changeFkeyDeferrable', 'imagelinks', 'il_from', 'page(page_id) ON DELETE CASCADE' ),
320 array( 'changeFkeyDeferrable', 'ipblocks', 'ipb_by', 'mwuser(user_id) ON DELETE CASCADE' ),
321 array( 'changeFkeyDeferrable', 'ipblocks', 'ipb_user', 'mwuser(user_id) ON DELETE SET NULL' ),
322 array( 'changeFkeyDeferrable', 'ipblocks', 'ipb_parent_block_id', 'ipblocks(ipb_id) ON DELETE SET NULL' ),
323 array( 'changeFkeyDeferrable', 'langlinks', 'll_from', 'page(page_id) ON DELETE CASCADE' ),
324 array( 'changeFkeyDeferrable', 'logging', 'log_user', 'mwuser(user_id) ON DELETE SET NULL' ),
325 array( 'changeFkeyDeferrable', 'oldimage', 'oi_name', 'image(img_name) ON DELETE CASCADE ON UPDATE CASCADE' ),
326 array( 'changeFkeyDeferrable', 'oldimage', 'oi_user', 'mwuser(user_id) ON DELETE SET NULL' ),
327 array( 'changeFkeyDeferrable', 'pagelinks', 'pl_from', 'page(page_id) ON DELETE CASCADE' ),
328 array( 'changeFkeyDeferrable', 'page_props', 'pp_page', 'page (page_id) ON DELETE CASCADE' ),
329 array( 'changeFkeyDeferrable', 'page_restrictions', 'pr_page', 'page(page_id) ON DELETE CASCADE' ),
330 array( 'changeFkeyDeferrable', 'protected_titles', 'pt_user', 'mwuser(user_id) ON DELETE SET NULL' ),
331 array( 'changeFkeyDeferrable', 'recentchanges', 'rc_cur_id', 'page(page_id) ON DELETE SET NULL' ),
332 array( 'changeFkeyDeferrable', 'recentchanges', 'rc_user', 'mwuser(user_id) ON DELETE SET NULL' ),
333 array( 'changeFkeyDeferrable', 'redirect', 'rd_from', 'page(page_id) ON DELETE CASCADE' ),
334 array( 'changeFkeyDeferrable', 'revision', 'rev_page', 'page (page_id) ON DELETE CASCADE' ),
335 array( 'changeFkeyDeferrable', 'revision', 'rev_user', 'mwuser(user_id) ON DELETE RESTRICT' ),
336 array( 'changeFkeyDeferrable', 'templatelinks', 'tl_from', 'page(page_id) ON DELETE CASCADE' ),
337 array( 'changeFkeyDeferrable', 'user_groups', 'ug_user', 'mwuser(user_id) ON DELETE CASCADE' ),
338 array( 'changeFkeyDeferrable', 'user_newtalk', 'user_id', 'mwuser(user_id) ON DELETE CASCADE' ),
339 array( 'changeFkeyDeferrable', 'user_properties', 'up_user', 'mwuser(user_id) ON DELETE CASCADE' ),
340 array( 'changeFkeyDeferrable', 'watchlist', 'wl_user', 'mwuser(user_id) ON DELETE CASCADE' ),
341
342 # r81574
343 array( 'addInterwikiType' ),
344 # end
345 array( 'tsearchFixes' ),
346 );
347 }
348
349 protected function getOldGlobalUpdates() {
350 global $wgExtNewTables, $wgExtPGNewFields, $wgExtPGAlteredFields, $wgExtNewIndexes;
351
352 $updates = array();
353
354 # Add missing extension tables
355 foreach ( $wgExtNewTables as $tableRecord ) {
356 $updates[] = array(
357 'addTable', $tableRecord[0], $tableRecord[1], true
358 );
359 }
360
361 # Add missing extension fields
362 foreach ( $wgExtPGNewFields as $fieldRecord ) {
363 $updates[] = array(
364 'addPgField', $fieldRecord[0], $fieldRecord[1],
365 $fieldRecord[2]
366 );
367 }
368
369 # Change altered columns
370 foreach ( $wgExtPGAlteredFields as $fieldRecord ) {
371 $updates[] = array(
372 'changeField', $fieldRecord[0], $fieldRecord[1],
373 $fieldRecord[2]
374 );
375 }
376
377 # Add missing extension indexes
378 foreach ( $wgExtNewIndexes as $fieldRecord ) {
379 $updates[] = array(
380 'addPgExtIndex', $fieldRecord[0], $fieldRecord[1],
381 $fieldRecord[2]
382 );
383 }
384
385 return $updates;
386 }
387
388 protected function describeTable( $table ) {
389 $q = <<<END
390 SELECT attname, attnum FROM pg_namespace, pg_class, pg_attribute
391 WHERE pg_class.relnamespace = pg_namespace.oid
392 AND attrelid=pg_class.oid AND attnum > 0
393 AND relname=%s AND nspname=%s
394 END;
395 $res = $this->db->query( sprintf( $q,
396 $this->db->addQuotes( $table ),
397 $this->db->addQuotes( $this->db->getCoreSchema() ) ) );
398 if ( !$res ) {
399 return null;
400 }
401
402 $cols = array();
403 foreach ( $res as $r ) {
404 $cols[] = array(
405 "name" => $r[0],
406 "ord" => $r[1],
407 );
408 }
409 return $cols;
410 }
411
412 function describeIndex( $idx ) {
413 // first fetch the key (which is a list of columns ords) and
414 // the table the index applies to (an oid)
415 $q = <<<END
416 SELECT indkey, indrelid FROM pg_namespace, pg_class, pg_index
417 WHERE nspname=%s
418 AND pg_class.relnamespace = pg_namespace.oid
419 AND relname=%s
420 AND indexrelid=pg_class.oid
421 END;
422 $res = $this->db->query(
423 sprintf(
424 $q,
425 $this->db->addQuotes( $this->db->getCoreSchema() ),
426 $this->db->addQuotes( $idx )
427 )
428 );
429 if ( !$res ) {
430 return null;
431 }
432 if ( !( $r = $this->db->fetchRow( $res ) ) ) {
433 return null;
434 }
435
436 $indkey = $r[0];
437 $relid = intval( $r[1] );
438 $indkeys = explode( ' ', $indkey );
439
440 $colnames = array();
441 foreach ( $indkeys as $rid ) {
442 $query = <<<END
443 SELECT attname FROM pg_class, pg_attribute
444 WHERE attrelid=$relid
445 AND attnum=%d
446 AND attrelid=pg_class.oid
447 END;
448 $r2 = $this->db->query( sprintf( $query, $rid ) );
449 if ( !$r2 ) {
450 return null;
451 }
452 if ( !( $row2 = $this->db->fetchRow( $r2 ) ) ) {
453 return null;
454 }
455 $colnames[] = $row2[0];
456 }
457
458 return $colnames;
459 }
460
461 function fkeyDeltype( $fkey ) {
462 $q = <<<END
463 SELECT confdeltype FROM pg_constraint, pg_namespace
464 WHERE connamespace=pg_namespace.oid
465 AND nspname=%s
466 AND conname=%s;
467 END;
468 $r = $this->db->query(
469 sprintf(
470 $q,
471 $this->db->addQuotes( $this->db->getCoreSchema() ),
472 $this->db->addQuotes( $fkey )
473 )
474 );
475 if ( !( $row = $this->db->fetchRow( $r ) ) ) {
476 return null;
477 }
478 return $row[0];
479 }
480
481 function ruleDef( $table, $rule ) {
482 $q = <<<END
483 SELECT definition FROM pg_rules
484 WHERE schemaname = %s
485 AND tablename = %s
486 AND rulename = %s
487 END;
488 $r = $this->db->query(
489 sprintf(
490 $q,
491 $this->db->addQuotes( $this->db->getCoreSchema() ),
492 $this->db->addQuotes( $table ),
493 $this->db->addQuotes( $rule )
494 )
495 );
496 $row = $this->db->fetchRow( $r );
497 if ( !$row ) {
498 return null;
499 }
500 $d = $row[0];
501 return $d;
502 }
503
504 protected function addSequence( $table, $pkey, $ns ) {
505 if ( !$this->db->sequenceExists( $ns ) ) {
506 $this->output( "Creating sequence $ns\n" );
507 $this->db->query( "CREATE SEQUENCE $ns" );
508 if( $pkey !== false ) {
509 $this->setDefault( $table, $pkey, '"nextval"(\'"' . $ns . '"\'::"regclass")' );
510 }
511 }
512 }
513
514 protected function renameSequence( $old, $new ) {
515 if ( $this->db->sequenceExists( $new ) ) {
516 $this->output( "...sequence $new already exists.\n" );
517 return;
518 }
519 if ( $this->db->sequenceExists( $old ) ) {
520 $this->output( "Renaming sequence $old to $new\n" );
521 $this->db->query( "ALTER SEQUENCE $old RENAME TO $new" );
522 }
523 }
524
525 protected function renameTable( $old, $new, $patch = false ) {
526 if ( $this->db->tableExists( $old ) ) {
527 $this->output( "Renaming table $old to $new\n" );
528 $old = $this->db->realTableName( $old, "quoted" );
529 $new = $this->db->realTableName( $new, "quoted" );
530 $this->db->query( "ALTER TABLE $old RENAME TO $new" );
531 if( $patch !== false ) {
532 $this->applyPatch( $patch );
533 }
534 }
535 }
536
537 protected function renameIndex( $table, $old, $new ) {
538 if ( $this->db->indexExists( $table, $old ) ) {
539 $this->output( "Renaming index $old to $new\n" );
540 $this->db->query( "ALTER INDEX $old RENAME TO $new" );
541 }
542 }
543
544 protected function addPgField( $table, $field, $type ) {
545 $fi = $this->db->fieldInfo( $table, $field );
546 if ( !is_null( $fi ) ) {
547 $this->output( "...column '$table.$field' already exists\n" );
548 return;
549 } else {
550 $this->output( "Adding column '$table.$field'\n" );
551 $this->db->query( "ALTER TABLE $table ADD $field $type" );
552 }
553 }
554
555 protected function changeField( $table, $field, $newtype, $default ) {
556 $fi = $this->db->fieldInfo( $table, $field );
557 if ( is_null( $fi ) ) {
558 $this->output( "...ERROR: expected column $table.$field to exist\n" );
559 exit( 1 );
560 }
561
562 if ( $fi->type() === $newtype )
563 $this->output( "...column '$table.$field' is already of type '$newtype'\n" );
564 else {
565 $this->output( "Changing column type of '$table.$field' from '{$fi->type()}' to '$newtype'\n" );
566 $sql = "ALTER TABLE $table ALTER $field TYPE $newtype";
567 if ( strlen( $default ) ) {
568 $res = array();
569 if ( preg_match( '/DEFAULT (.+)/', $default, $res ) ) {
570 $sqldef = "ALTER TABLE $table ALTER $field SET DEFAULT $res[1]";
571 $this->db->query( $sqldef );
572 $default = preg_replace( '/\s*DEFAULT .+/', '', $default );
573 }
574 $sql .= " USING $default";
575 }
576 $this->db->query( $sql );
577 }
578 }
579
580 protected function setDefault( $table, $field, $default ) {
581
582 $info = $this->db->fieldInfo( $table, $field );
583 if ( $info->defaultValue() !== $default ) {
584 $this->output( "Changing '$table.$field' default value\n" );
585 $this->db->query( "ALTER TABLE $table ALTER $field SET DEFAULT " . $default );
586 }
587 }
588
589 protected function changeNullableField( $table, $field, $null) {
590 $fi = $this->db->fieldInfo( $table, $field );
591 if ( is_null( $fi ) ) {
592 $this->output( "...ERROR: expected column $table.$field to exist\n" );
593 exit( 1 );
594 }
595 if ( $fi->isNullable() ) {
596 # # It's NULL - does it need to be NOT NULL?
597 if ( 'NOT NULL' === $null ) {
598 $this->output( "Changing '$table.$field' to not allow NULLs\n" );
599 $this->db->query( "ALTER TABLE $table ALTER $field SET NOT NULL" );
600 } else {
601 $this->output( "...column '$table.$field' is already set as NULL\n" );
602 }
603 } else {
604 # # It's NOT NULL - does it need to be NULL?
605 if ( 'NULL' === $null ) {
606 $this->output( "Changing '$table.$field' to allow NULLs\n" );
607 $this->db->query( "ALTER TABLE $table ALTER $field DROP NOT NULL" );
608 }
609 else {
610 $this->output( "...column '$table.$field' is already set as NOT NULL\n" );
611 }
612 }
613 }
614
615 public function addPgIndex( $table, $index, $type ) {
616 if ( $this->db->indexExists( $table, $index ) ) {
617 $this->output( "...index '$index' on table '$table' already exists\n" );
618 } else {
619 $this->output( "Creating index '$index' on table '$table' $type\n" );
620 $this->db->query( "CREATE INDEX $index ON $table $type" );
621 }
622 }
623
624 public function addPgExtIndex( $table, $index, $type ) {
625 if ( $this->db->indexExists( $table, $index ) ) {
626 $this->output( "...index '$index' on table '$table' already exists\n" );
627 } else {
628 if ( preg_match( '/^\(/', $type ) ) {
629 $this->output( "Creating index '$index' on table '$table'\n" );
630 $this->db->query( "CREATE INDEX $index ON $table $type" );
631 } else {
632 $this->applyPatch( $type, true, "Creating index '$index' on table '$table'" );
633 }
634 }
635 }
636
637 protected function changeFkeyDeferrable( $table, $field, $clause ) {
638 $fi = $this->db->fieldInfo( $table, $field );
639 if ( is_null( $fi ) ) {
640 $this->output( "WARNING! Column '$table.$field' does not exist but it should! Please report this.\n" );
641 return;
642 }
643 if ( $fi->is_deferred() && $fi->is_deferrable() ) {
644 return;
645 }
646 $this->output( "Altering column '$table.$field' to be DEFERRABLE INITIALLY DEFERRED\n" );
647 $conname = $fi->conname();
648 if ( $fi->conname() ) {
649 $conclause = "CONSTRAINT \"$conname\"";
650 $command = "ALTER TABLE $table DROP CONSTRAINT $conname";
651 $this->db->query( $command );
652 } else {
653 $this->output( "Column '$table.$field' does not have a foreign key constraint, will be added\n" );
654 $conclause = "";
655 }
656 $command = "ALTER TABLE $table ADD $conclause FOREIGN KEY ($field) REFERENCES $clause DEFERRABLE INITIALLY DEFERRED";
657 $this->db->query( $command );
658 }
659
660 protected function convertArchive2() {
661 if ( $this->db->tableExists( "archive2" ) ) {
662 if ( $this->db->ruleExists( 'archive', 'archive_insert' ) ) {
663 $this->output( "Dropping rule 'archive_insert'\n" );
664 $this->db->query( 'DROP RULE archive_insert ON archive' );
665 }
666 if ( $this->db->ruleExists( 'archive', 'archive_delete' ) ) {
667 $this->output( "Dropping rule 'archive_delete'\n" );
668 $this->db->query( 'DROP RULE archive_delete ON archive' );
669 }
670 $this->applyPatch( 'patch-remove-archive2.sql', false, "Converting 'archive2' back to normal archive table" );
671 } else {
672 $this->output( "...obsolete table 'archive2' does not exist\n" );
673 }
674 }
675
676 protected function checkOiDeleted() {
677 if ( $this->db->fieldInfo( 'oldimage', 'oi_deleted' )->type() !== 'smallint' ) {
678 $this->output( "Changing 'oldimage.oi_deleted' to type 'smallint'\n" );
679 $this->db->query( "ALTER TABLE oldimage ALTER oi_deleted DROP DEFAULT" );
680 $this->db->query( "ALTER TABLE oldimage ALTER oi_deleted TYPE SMALLINT USING (oi_deleted::smallint)" );
681 $this->db->query( "ALTER TABLE oldimage ALTER oi_deleted SET DEFAULT 0" );
682 } else {
683 $this->output( "...column 'oldimage.oi_deleted' is already of type 'smallint'\n" );
684 }
685 }
686
687 protected function checkOiNameConstraint() {
688 if ( $this->db->hasConstraint( "oldimage_oi_name_fkey_cascaded" ) ) {
689 $this->output( "...table 'oldimage' has correct cascading delete/update foreign key to image\n" );
690 } else {
691 if ( $this->db->hasConstraint( "oldimage_oi_name_fkey" ) ) {
692 $this->db->query( "ALTER TABLE oldimage DROP CONSTRAINT oldimage_oi_name_fkey" );
693 }
694 if ( $this->db->hasConstraint( "oldimage_oi_name_fkey_cascade" ) ) {
695 $this->db->query( "ALTER TABLE oldimage DROP CONSTRAINT oldimage_oi_name_fkey_cascade" );
696 }
697 $this->output( "Making foreign key on table 'oldimage' (to image) a cascade delete/update\n" );
698 $this->db->query( "ALTER TABLE oldimage ADD CONSTRAINT oldimage_oi_name_fkey_cascaded " .
699 "FOREIGN KEY (oi_name) REFERENCES image(img_name) ON DELETE CASCADE ON UPDATE CASCADE" );
700 }
701 }
702
703 protected function checkPageDeletedTrigger() {
704 if ( !$this->db->triggerExists( 'page', 'page_deleted' ) ) {
705 $this->applyPatch( 'patch-page_deleted.sql', false, "Adding function and trigger 'page_deleted' to table 'page'" );
706 } else {
707 $this->output( "...table 'page' has 'page_deleted' trigger\n" );
708 }
709 }
710
711 protected function dropIndex( $table, $index, $patch = '', $fullpath = false ) {
712 if ( $this->db->indexExists( $table, $index ) ) {
713 $this->output( "Dropping obsolete index '$index'\n" );
714 $this->db->query( "DROP INDEX \"". $index ."\"" );
715 }
716 }
717
718 protected function checkIndex( $index, $should_be, $good_def ) {
719 $pu = $this->db->indexAttributes( $index );
720 if ( !empty( $pu ) && $pu != $should_be ) {
721 $this->output( "Dropping obsolete version of index '$index'\n" );
722 $this->db->query( "DROP INDEX \"". $index ."\"" );
723 $pu = array();
724 } else {
725 $this->output( "...no need to drop index '$index'\n" );
726 }
727
728 if ( empty( $pu ) ) {
729 $this->output( "Creating index '$index'\n" );
730 $this->db->query( $good_def );
731 } else {
732 $this->output( "...index '$index' exists\n" );
733 }
734 }
735
736 protected function checkRevUserFkey() {
737 if ( $this->fkeyDeltype( 'revision_rev_user_fkey' ) == 'r' ) {
738 $this->output( "...constraint 'revision_rev_user_fkey' is ON DELETE RESTRICT\n" );
739 } else {
740 $this->applyPatch( 'patch-revision_rev_user_fkey.sql', false, "Changing constraint 'revision_rev_user_fkey' to ON DELETE RESTRICT" );
741 }
742 }
743
744 protected function checkIwlPrefix() {
745 if ( $this->db->indexExists( 'iwlinks', 'iwl_prefix' ) ) {
746 $this->applyPatch( 'patch-rename-iwl_prefix.sql', false, "Replacing index 'iwl_prefix' with 'iwl_prefix_from_title'" );
747 }
748 }
749
750 protected function addInterwikiType() {
751 $this->applyPatch( 'patch-add_interwiki.sql', false, "Refreshing add_interwiki()" );
752 }
753
754 protected function tsearchFixes() {
755 # Tweak the page_title tsearch2 trigger to filter out slashes
756 # This is create or replace, so harmless to call if not needed
757 $this->applyPatch( 'patch-ts2pagetitle.sql', false, "Refreshing ts2_page_title()" );
758
759 # If the server is 8.3 or higher, rewrite the tsearch2 triggers
760 # in case they have the old 'default' versions
761 # Gather version numbers in case we need them
762 if ( $this->db->getServerVersion() >= 8.3 ) {
763 $this->applyPatch( 'patch-tsearch2funcs.sql', false, "Rewriting tsearch2 triggers" );
764 }
765 }
766 }