From 9ea6b6d34c9188172d3118314d33fed77d6dd63e Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Thu, 14 Oct 2010 01:16:38 +0200 Subject: Bug 451735: Wrong index for the series table r/a=mkanat --- Bugzilla/Install/DB.pm | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'Bugzilla/Install/DB.pm') diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm index b6e58b857..f8a9c15d3 100644 --- a/Bugzilla/Install/DB.pm +++ b/Bugzilla/Install/DB.pm @@ -637,6 +637,9 @@ sub update_table_definitions { # 2010-10-09 LpSolit@gmail.com - Bug 505165 $dbh->bz_alter_column('flags', 'setter_id', {TYPE => 'INT3', NOTNULL => 1}); + # 2010-10-09 LpSolit@gmail.com - Bug 451735 + _fix_series_indexes(); + ################################################################ # New --TABLE-- changes should go *** A B O V E *** this point # ################################################################ @@ -3450,6 +3453,16 @@ sub _migrate_field_visibility_value { } } +sub _fix_series_indexes { + my $dbh = Bugzilla->dbh; + return if $dbh->bz_index_info('series', 'series_category_idx'); + + $dbh->bz_drop_index('series', 'series_creator_idx'); + $dbh->bz_add_index('series', 'series_creator_idx', ['creator']); + $dbh->bz_add_index('series', 'series_category_idx', + {FIELDS => [qw(category subcategory name)], TYPE => 'UNIQUE'}); +} + 1; __END__ -- cgit v1.2.3-24-g4f1b