aboutsummaryrefslogtreecommitdiffstats
path: root/maintenance/archives/patch-querycache.sql
Commit message (Collapse)AuthorAgeFilesLines
* Drop 1.3 upgrade patch filesAmmarpad2021-01-311-16/+0
| | | | | | | Leaving protected methods to be removed separately where necessary Bug: T272199 Change-Id: I49ad2c6f2e8890488fb9a144d02735454cfdcd5b
* Remove a bunch of trailing spaces and unneeded newlinesumherirrender2012-10-201-3/+3
| | | | Change-Id: If9fb04f64389b9b40c13f3372ad4792c2e14def0
* Self-revert r80547 per CR, breaks stuff and is undesirableRoan Kattouw2011-01-201-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/80665
* War on varchar. Changed all occurrences of varchar(N) and varchar(N) binary ↵Roan Kattouw2011-01-191-1/+1
| | | | | | | to varbinary(N). varchars cause problems ("Invalid mix of collations" errors) on MySQL databases with certain configs, most notably the default MySQL config Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/80547
* Updated patch files to match the recent update to tables.sql. Removed some ↵Tim Starling2007-06-221-3/+3
| | | | | | | defunct patch files. Tested with a 1.3 -> 1.11 upgrade. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/23246
* * Removed mysql5 SQL files, obviously we're collectively incapable of ↵Tim Starling2007-04-221-1/+1
| | | | | | | | | | | keeping them up to date. They were littered with errors. The only deliberate difference appears to be the table character set, which can be adjusted programatically using a variable. * Added table option variable to the SQL patch files, so now upgrading a non-standard schema won't leave your database horribly corrupted. * Added sql.php, for sourcing SQL files with MediaWiki variable substitution. * Disable MySQL's strict mode at session start for MySQL 4.1+, to avoid the various problems that occur when it is on. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/21466
* put TYPE back in, now as it's back in 5.1 ;-)Domas Mituzas2006-04-081-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/13551
* replace TYPE= with ENGINE=, (supported since 4.0, TYPE deprecated since 4.1)Domas Mituzas2006-03-121-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/13197
* * (bug 719) Increase namespace fields from tinyint to regular intBrion Vibber2005-05-021-1/+1
| | | | | | | This keeps custom namespaces from bumping the 8-bit ceiling so quickly. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/8798
* Use InnoDB by default for table creations if available.Brion Vibber2005-05-021-1/+8
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/8794
* added /*$wgDBprefix*/ in various places, to support upgrading from old ↵Tim Starling2005-01-141-1/+1
| | | | | | | prefixed databases, e.g. mine Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/7052
* Replace ugly abuse of log pages to store cached results of query pagesBrion Vibber2004-05-091-0/+9
with a table that stores up to 1000 rows for each 'expensive' special page. This can be paged through, reducing the annoyingness of 50 result limits on the old system. Rebuilding the cache can be forced by adding "recache=1" URL parameter, but this will need to be refined with some sort of controls to prevent abuse. Added the user realname update to the installer's updater list, also. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3513