Merge "Declare visibility on class properties of RecentChange"
[mediawiki.git] / includes / installer / OracleUpdater.php
blob7b6f49c658e97b51dc471b7e02410431fe9b1d82
1 <?php
2 /**
3 * Oracle-specific updater.
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.
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.
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
20 * @file
21 * @ingroup Deployment
24 /**
25 * Class for handling updates to Oracle databases.
27 * @ingroup Deployment
28 * @since 1.17
30 class OracleUpdater extends DatabaseUpdater {
32 /**
33 * Handle to the database subclass
35 * @var DatabaseOracle
37 protected $db;
39 protected function getCoreUpdateList() {
40 return array(
41 array( 'disableContentHandlerUseDB' ),
43 // 1.17
44 array( 'doNamespaceDefaults' ),
45 array( 'doFKRenameDeferr' ),
46 array( 'doFunctions17' ),
47 array( 'doSchemaUpgrade17' ),
48 array( 'doInsertPage0' ),
49 array( 'doRemoveNotNullEmptyDefaults' ),
50 array( 'addTable', 'user_former_groups', 'patch-user_former_groups.sql' ),
52 //1.18
53 array( 'addIndex', 'user', 'i02', 'patch-user_email_index.sql' ),
54 array( 'modifyField', 'user_properties', 'up_property', 'patch-up_property.sql' ),
55 array( 'addTable', 'uploadstash', 'patch-uploadstash.sql' ),
56 array( 'doRecentchangesFK2Cascade' ),
58 //1.19
59 array( 'addIndex', 'logging', 'i05', 'patch-logging_type_action_index.sql' ),
60 array( 'addField', 'revision', 'rev_sha1', 'patch-rev_sha1_field.sql' ),
61 array( 'addField', 'archive', 'ar_sha1', 'patch-ar_sha1_field.sql' ),
62 array( 'doRemoveNotNullEmptyDefaults2' ),
63 array( 'addIndex', 'page', 'i03', 'patch-page_redirect_namespace_len.sql' ),
64 array( 'addField', 'uploadstash', 'us_chunk_inx', 'patch-us_chunk_inx_field.sql' ),
65 array( 'addField', 'job', 'job_timestamp', 'patch-job_timestamp_field.sql' ),
66 array( 'addIndex', 'job', 'i02', 'patch-job_timestamp_index.sql' ),
67 array( 'doPageRestrictionsPKUKFix' ),
69 //1.20
70 array( 'addIndex', 'ipblocks', 'i05', 'patch-ipblocks_i05_index.sql' ),
71 array( 'addIndex', 'revision', 'i05', 'patch-revision_i05_index.sql' ),
72 array( 'dropField', 'category', 'cat_hidden', 'patch-cat_hidden.sql' ),
74 //1.21
75 array( 'addField', 'revision', 'rev_content_format',
76 'patch-revision-rev_content_format.sql' ),
77 array( 'addField', 'revision', 'rev_content_model',
78 'patch-revision-rev_content_model.sql' ),
79 array( 'addField', 'archive', 'ar_content_format', 'patch-archive-ar_content_format.sql' ),
80 array( 'addField', 'archive', 'ar_content_model', 'patch-archive-ar_content_model.sql' ),
81 array( 'addField', 'archive', 'ar_id', 'patch-archive-ar_id.sql' ),
82 array( 'addField', 'externallinks', 'el_id', 'patch-externallinks-el_id.sql' ),
83 array( 'addField', 'page', 'page_content_model', 'patch-page-page_content_model.sql' ),
84 array( 'enableContentHandlerUseDB' ),
85 array( 'dropField', 'site_stats', 'ss_admins', 'patch-ss_admins.sql' ),
86 array( 'dropField', 'recentchanges', 'rc_moved_to_title', 'patch-rc_moved.sql' ),
87 array( 'addTable', 'sites', 'patch-sites.sql' ),
88 array( 'addField', 'filearchive', 'fa_sha1', 'patch-fa_sha1.sql' ),
89 array( 'addField', 'job', 'job_token', 'patch-job_token.sql' ),
90 array( 'addField', 'job', 'job_attempts', 'patch-job_attempts.sql' ),
91 array( 'addField', 'uploadstash', 'us_props', 'patch-uploadstash-us_props.sql' ),
92 array( 'modifyField', 'user_groups', 'ug_group', 'patch-ug_group-length-increase-255.sql' ),
93 array( 'modifyField', 'user_former_groups', 'ufg_group',
94 'patch-ufg_group-length-increase-255.sql' ),
96 // KEEP THIS AT THE BOTTOM!!
97 array( 'doRebuildDuplicateFunction' ),
103 * MySQL uses datatype defaults for NULL inserted into NOT NULL fields
104 * In namespace case that results into insert of 0 which is default namespace
105 * Oracle inserts NULL, so namespace fields should have a default value
107 protected function doNamespaceDefaults() {
108 $meta = $this->db->fieldInfo( 'page', 'page_namespace' );
109 if ( $meta->defaultValue() != null ) {
110 return;
113 $this->applyPatch(
114 'patch_namespace_defaults.sql',
115 false,
116 'Altering namespace fields with default value'
121 * Uniform FK names + deferrable state
123 protected function doFKRenameDeferr() {
124 $meta = $this->db->query( '
125 SELECT COUNT(*) cnt
126 FROM user_constraints
127 WHERE constraint_type = \'R\' AND deferrable = \'DEFERRABLE\''
129 $row = $meta->fetchRow();
130 if ( $row && $row['cnt'] > 0 ) {
131 return;
134 $this->applyPatch( 'patch_fk_rename_deferred.sql', false, "Altering foreign keys ... " );
138 * Recreate functions to 17 schema layout
140 protected function doFunctions17() {
141 $this->applyPatch( 'patch_create_17_functions.sql', false, "Recreating functions" );
145 * Schema upgrade 16->17
146 * there are no incremental patches prior to this
148 protected function doSchemaUpgrade17() {
149 // check if iwlinks table exists which was added in 1.17
150 if ( $this->db->tableExists( 'iwlinks' ) ) {
151 return;
153 $this->applyPatch( 'patch_16_17_schema_changes.sql', false, "Updating schema to 17" );
157 * Insert page (page_id = 0) to prevent FK constraint violation
159 protected function doInsertPage0() {
160 $this->output( "Inserting page 0 if missing ... " );
161 $row = array(
162 'page_id' => 0,
163 'page_namespace' => 0,
164 'page_title' => ' ',
165 'page_counter' => 0,
166 'page_is_redirect' => 0,
167 'page_is_new' => 0,
168 'page_random' => 0,
169 'page_touched' => $this->db->timestamp(),
170 'page_latest' => 0,
171 'page_len' => 0
173 $this->db->insert( 'page', $row, 'OracleUpdater:doInserPage0', array( 'IGNORE' ) );
174 $this->output( "ok\n" );
178 * Remove DEFAULT '' NOT NULL constraints from fields as '' is internally
179 * converted to NULL in Oracle
181 protected function doRemoveNotNullEmptyDefaults() {
182 $meta = $this->db->fieldInfo( 'categorylinks', 'cl_sortkey_prefix' );
183 if ( $meta->isNullable() ) {
184 return;
186 $this->applyPatch(
187 'patch_remove_not_null_empty_defs.sql',
188 false,
189 'Removing not null empty constraints'
193 protected function doRemoveNotNullEmptyDefaults2() {
194 $meta = $this->db->fieldInfo( 'ipblocks', 'ipb_by_text' );
195 if ( $meta->isNullable() ) {
196 return;
198 $this->applyPatch(
199 'patch_remove_not_null_empty_defs2.sql',
200 false,
201 'Removing not null empty constraints'
206 * Removed forcing of invalid state on recentchanges_fk2.
207 * cascading taken in account in the deleting function
209 protected function doRecentchangesFK2Cascade() {
210 $meta = $this->db->query( 'SELECT 1 FROM all_constraints WHERE owner = \'' .
211 strtoupper( $this->db->getDBname() ) .
212 '\' AND constraint_name = \'' .
213 $this->db->tablePrefix() .
214 'RECENTCHANGES_FK2\' AND delete_rule = \'CASCADE\''
216 $row = $meta->fetchRow();
217 if ( $row ) {
218 return;
221 $this->applyPatch( 'patch_recentchanges_fk2_cascade.sql', false, "Altering RECENTCHANGES_FK2" );
225 * Fixed wrong PK, UK definition
227 protected function doPageRestrictionsPKUKFix() {
228 $this->output( "Altering PAGE_RESTRICTIONS keys ... " );
230 $meta = $this->db->query( 'SELECT column_name FROM all_cons_columns WHERE owner = \'' .
231 strtoupper( $this->db->getDBname() ) .
232 '\' AND constraint_name = \'' .
233 $this->db->tablePrefix() .
234 'PAGE_RESTRICTIONS_PK\' AND rownum = 1'
236 $row = $meta->fetchRow();
237 if ( $row['column_name'] == 'PR_ID' ) {
238 $this->output( "seems to be up to date.\n" );
240 return;
243 $this->applyPatch( 'patch-page_restrictions_pkuk_fix.sql', false );
244 $this->output( "ok\n" );
248 * rebuilding of the function that duplicates tables for tests
250 protected function doRebuildDuplicateFunction() {
251 $this->applyPatch( 'patch_rebuild_dupfunc.sql', false, "Rebuilding duplicate function" );
255 * Overload: after this action field info table has to be rebuilt
257 * @param $what array
259 public function doUpdates( $what = array( 'core', 'extensions', 'purge', 'stats' ) ) {
260 parent::doUpdates( $what );
262 $this->db->query( 'BEGIN fill_wiki_info; END;' );
266 * Overload: because of the DDL_MODE tablename escaping is a bit dodgy
268 public function purgeCache() {
269 # We can't guarantee that the user will be able to use TRUNCATE,
270 # but we know that DELETE is available to us
271 $this->output( "Purging caches..." );
272 $this->db->delete( '/*Q*/' . $this->db->tableName( 'objectcache' ), '*', __METHOD__ );
273 $this->output( "done.\n" );