diff options
author | Philippe Trottier <tchiwam@gentoo.org> | 2006-08-31 14:01:12 +0000 |
---|---|---|
committer | Philippe Trottier <tchiwam@gentoo.org> | 2006-08-31 14:01:12 +0000 |
commit | a4bdd90d24819770e8bbb736f6c11c2d1c7812c9 (patch) | |
tree | b717c9bf2db17e3980775cc540e2b08e98341b2b /www-apps/mediawiki/files | |
parent | Added ~ppc64 (diff) | |
download | gentoo-2-a4bdd90d24819770e8bbb736f6c11c2d1c7812c9.tar.gz gentoo-2-a4bdd90d24819770e8bbb736f6c11c2d1c7812c9.tar.bz2 gentoo-2-a4bdd90d24819770e8bbb736f6c11c2d1c7812c9.zip |
bug 139942
(Portage version: 2.1-r2)
Diffstat (limited to 'www-apps/mediawiki/files')
-rw-r--r-- | www-apps/mediawiki/files/jobindexlength-mysql4.patch | 17 | ||||
-rw-r--r-- | www-apps/mediawiki/files/jobindexlength-mysql5.patch | 17 |
2 files changed, 34 insertions, 0 deletions
diff --git a/www-apps/mediawiki/files/jobindexlength-mysql4.patch b/www-apps/mediawiki/files/jobindexlength-mysql4.patch new file mode 100644 index 000000000000..330c4e2e56c5 --- /dev/null +++ b/www-apps/mediawiki/files/jobindexlength-mysql4.patch @@ -0,0 +1,17 @@ +--- mediawiki-1.7.1/maintenance/tables.sql.orig 2006-08-31 16:37:41.000000000 +0300 ++++ mediawiki-1.7.1/maintenance/tables.sql 2006-08-31 16:38:18.000000000 +0300 +@@ -967,12 +967,12 @@ + job_id int(9) unsigned NOT NULL auto_increment, + + -- Command name, currently only refreshLinks is defined +- job_cmd varchar(255) NOT NULL default '', ++ job_cmd varchar(128) NOT NULL default '', + + -- Namespace and title to act on + -- Should be 0 and '' if the command does not operate on a title + job_namespace int NOT NULL, +- job_title varchar(255) binary NOT NULL, ++ job_title varchar(128) binary NOT NULL, + + -- Any other parameters to the command + -- Presently unused, format undefined diff --git a/www-apps/mediawiki/files/jobindexlength-mysql5.patch b/www-apps/mediawiki/files/jobindexlength-mysql5.patch new file mode 100644 index 000000000000..b2daf5dbeb26 --- /dev/null +++ b/www-apps/mediawiki/files/jobindexlength-mysql5.patch @@ -0,0 +1,17 @@ +--- mediawiki-1.7.1/maintenance/mysql5/tables.sql.orig 2006-08-31 16:43:04.000000000 +0300 ++++ mediawiki-1.7.1/maintenance/mysql5/tables.sql 2006-08-31 16:43:55.000000000 +0300 +@@ -979,12 +979,12 @@ + job_id int(9) unsigned NOT NULL auto_increment, + + -- Command name, currently only refreshLinks is defined +- job_cmd varchar(255) NOT NULL default '', ++ job_cmd varchar(128) NOT NULL default '', + + -- Namespace and title to act on + -- Should be 0 and '' if the command does not operate on a title + job_namespace int NOT NULL, +- job_title varchar(255) binary NOT NULL, ++ job_title varchar(128) binary NOT NULL, + + -- Any other parameters to the command + -- Presently unused, format undefined |